/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: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 0 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] (22) YES (23) QDP (24) DependencyGraphProof [EQUIVALENT, 0 ms] (25) AND (26) QDP (27) TransformationProof [EQUIVALENT, 3006 ms] (28) QDP (29) TransformationProof [EQUIVALENT, 0 ms] (30) QDP (31) TransformationProof [EQUIVALENT, 0 ms] (32) QDP (33) TransformationProof [EQUIVALENT, 0 ms] (34) QDP (35) TransformationProof [EQUIVALENT, 0 ms] (36) QDP (37) TransformationProof [EQUIVALENT, 0 ms] (38) QDP (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] (40) YES (41) QDP (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] (43) YES (44) QDP (45) DependencyGraphProof [EQUIVALENT, 0 ms] (46) AND (47) QDP (48) TransformationProof [EQUIVALENT, 2600 ms] (49) QDP (50) TransformationProof [EQUIVALENT, 0 ms] (51) QDP (52) TransformationProof [EQUIVALENT, 0 ms] (53) QDP (54) TransformationProof [EQUIVALENT, 0 ms] (55) QDP (56) TransformationProof [EQUIVALENT, 0 ms] (57) QDP (58) QDPSizeChangeProof [EQUIVALENT, 0 ms] (59) YES (60) QDP (61) QDPSizeChangeProof [EQUIVALENT, 0 ms] (62) YES (63) QDP (64) QDPSizeChangeProof [EQUIVALENT, 0 ms] (65) YES (66) QDP (67) QDPSizeChangeProof [EQUIVALENT, 0 ms] (68) YES (69) QDP (70) QDPSizeChangeProof [EQUIVALENT, 95 ms] (71) YES (72) QDP (73) DependencyGraphProof [EQUIVALENT, 0 ms] (74) AND (75) QDP (76) QDPSizeChangeProof [EQUIVALENT, 0 ms] (77) YES (78) QDP (79) TransformationProof [EQUIVALENT, 2808 ms] (80) QDP (81) TransformationProof [EQUIVALENT, 0 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) QDPSizeChangeProof [EQUIVALENT, 0 ms] (92) YES (93) QDP (94) QDPOrderProof [EQUIVALENT, 188 ms] (95) QDP (96) DependencyGraphProof [EQUIVALENT, 0 ms] (97) AND (98) QDP (99) QDPSizeChangeProof [EQUIVALENT, 0 ms] (100) YES (101) QDP (102) QDPOrderProof [EQUIVALENT, 64 ms] (103) QDP (104) DependencyGraphProof [EQUIVALENT, 0 ms] (105) AND (106) QDP (107) QDPSizeChangeProof [EQUIVALENT, 0 ms] (108) YES (109) QDP (110) QDPSizeChangeProof [EQUIVALENT, 0 ms] (111) YES (112) QDP (113) QDPSizeChangeProof [EQUIVALENT, 0 ms] (114) YES (115) QDP (116) QDPSizeChangeProof [EQUIVALENT, 0 ms] (117) YES (118) QDP (119) QDPSizeChangeProof [EQUIVALENT, 0 ms] (120) YES (121) QDP (122) QDPSizeChangeProof [EQUIVALENT, 0 ms] (123) 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 b a 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 (\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 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 (\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 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 = 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 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 = 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 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 b a -> 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 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 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 b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 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 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 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 = 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 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 = 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 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 b a -> 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 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 _ _ 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 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 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 _ (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 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 _ _ _ _) = 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 b a -> 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 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 a b; 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 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 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 _ (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 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 _ _ _ _) = 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 b a -> 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 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 = 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 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 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 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 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 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 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 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 = 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 "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 "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare0 x y True = GT; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare3 x y = compare2 x y (x == y); " 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 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 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 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 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 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 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 = 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 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 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 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 = 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' x wvz = gcd0Gcd'2 x wvz; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'1 True x wvz = x; gcd0Gcd'1 wwu wwv www = gcd0Gcd'0 wwv www; " 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 "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; " "reduce2Reduce0 xxv xxw x y True = x `quot` reduce2D xxv xxw :% (y `quot` reduce2D xxv xxw); " 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 "mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyv xyw xyv; " "mkBranchRight_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; " "mkBranchBalance_ok xyv xyw xyx = True; " "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_size xyv xyw xyx = sizeFM xyv; " "mkBranchUnbox xyv xyw xyx x = x; " "mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyx xyw xyx; " 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)) xzu xzv; " 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 { 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 yvw = fst (findMin yvw); " 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 yvx = fst (findMax yvx); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } 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 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 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 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 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 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 < 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_l fm_r; mkBranchBalance_ok xyv xyw xyx = True; mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyv xyw 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; mkBranchLeft_ok0Biggest_left_key yvx = fst (findMax yvx); mkBranchLeft_size xyv xyw xyx = sizeFM xyv; mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (1 + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzu xzv; mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyx xyw 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; mkBranchRight_ok0Smallest_right_key yvw = fst (findMin yvw); mkBranchRight_size xyv xyw xyx = sizeFM xyx; 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 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 = 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 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 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 = 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 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 b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt 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 < 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_l fm_r; mkBranchBalance_ok xyv xyw xyx = True; mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyv xyw 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; mkBranchLeft_ok0Biggest_left_key yvx = fst (findMax yvx); mkBranchLeft_size xyv xyw xyx = sizeFM xyv; 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)) xzu xzv; mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyx xyw 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; mkBranchRight_ok0Smallest_right_key yvw = fst (findMin yvw); mkBranchRight_size xyv xyw xyx = sizeFM xyx; 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 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 = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); sizeFM :: FiniteMap b a -> 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"];4150[label="yvy3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 4150[label="",style="solid", color="burlywood", weight=9]; 4150 -> 5[label="",style="solid", color="burlywood", weight=3]; 4151[label="yvy3/FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=10,color="white",style="solid",shape="box"];4 -> 4151[label="",style="solid", color="burlywood", weight=9]; 4151 -> 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"];4152[label="yvy4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 4152[label="",style="solid", color="burlywood", weight=9]; 4152 -> 8[label="",style="solid", color="burlywood", weight=3]; 4153[label="yvy4/FiniteMap.Branch yvy40 yvy41 yvy42 yvy43 yvy44",fontsize=10,color="white",style="solid",shape="box"];6 -> 4153[label="",style="solid", color="burlywood", weight=9]; 4153 -> 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"];4154[label="yvy6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];12 -> 4154[label="",style="solid", color="burlywood", weight=9]; 4154 -> 19[label="",style="solid", color="burlywood", weight=3]; 4155[label="yvy6/FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=10,color="white",style="solid",shape="box"];12 -> 4155[label="",style="solid", color="burlywood", weight=9]; 4155 -> 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"];4156[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];20 -> 4156[label="",style="solid", color="burlywood", weight=9]; 4156 -> 24[label="",style="solid", color="burlywood", weight=3]; 4157[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];20 -> 4157[label="",style="solid", color="burlywood", weight=9]; 4157 -> 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"];4158[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];33 -> 4158[label="",style="solid", color="burlywood", weight=9]; 4158 -> 38[label="",style="solid", color="burlywood", weight=3]; 4159[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];33 -> 4159[label="",style="solid", color="burlywood", weight=9]; 4159 -> 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"];4160[label="yvy40/yvy400 : yvy401",fontsize=10,color="white",style="solid",shape="box"];36 -> 4160[label="",style="solid", color="burlywood", weight=9]; 4160 -> 42[label="",style="solid", color="burlywood", weight=3]; 4161[label="yvy40/[]",fontsize=10,color="white",style="solid",shape="box"];36 -> 4161[label="",style="solid", color="burlywood", weight=9]; 4161 -> 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"];4162[label="yvy40/yvy400 : yvy401",fontsize=10,color="white",style="solid",shape="box"];37 -> 4162[label="",style="solid", color="burlywood", weight=9]; 4162 -> 44[label="",style="solid", color="burlywood", weight=3]; 4163[label="yvy40/[]",fontsize=10,color="white",style="solid",shape="box"];37 -> 4163[label="",style="solid", color="burlywood", weight=9]; 4163 -> 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"];4164[label="yvy30/yvy300 : yvy301",fontsize=10,color="white",style="solid",shape="box"];42 -> 4164[label="",style="solid", color="burlywood", weight=9]; 4164 -> 49[label="",style="solid", color="burlywood", weight=3]; 4165[label="yvy30/[]",fontsize=10,color="white",style="solid",shape="box"];42 -> 4165[label="",style="solid", color="burlywood", weight=9]; 4165 -> 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"];4166[label="yvy30/yvy300 : yvy301",fontsize=10,color="white",style="solid",shape="box"];43 -> 4166[label="",style="solid", color="burlywood", weight=9]; 4166 -> 51[label="",style="solid", color="burlywood", weight=3]; 4167[label="yvy30/[]",fontsize=10,color="white",style="solid",shape="box"];43 -> 4167[label="",style="solid", color="burlywood", weight=9]; 4167 -> 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"];4168[label="yvy30/yvy300 : yvy301",fontsize=10,color="white",style="solid",shape="box"];44 -> 4168[label="",style="solid", color="burlywood", weight=9]; 4168 -> 53[label="",style="solid", color="burlywood", weight=3]; 4169[label="yvy30/[]",fontsize=10,color="white",style="solid",shape="box"];44 -> 4169[label="",style="solid", color="burlywood", weight=9]; 4169 -> 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"];4170[label="yvy30/yvy300 : yvy301",fontsize=10,color="white",style="solid",shape="box"];45 -> 4170[label="",style="solid", color="burlywood", weight=9]; 4170 -> 55[label="",style="solid", color="burlywood", weight=3]; 4171[label="yvy30/[]",fontsize=10,color="white",style="solid",shape="box"];45 -> 4171[label="",style="solid", color="burlywood", weight=9]; 4171 -> 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"];4172[label="yvy40/yvy400 : yvy401",fontsize=10,color="white",style="solid",shape="box"];69 -> 4172[label="",style="solid", color="burlywood", weight=9]; 4172 -> 81[label="",style="solid", color="burlywood", weight=3]; 4173[label="yvy40/[]",fontsize=10,color="white",style="solid",shape="box"];69 -> 4173[label="",style="solid", color="burlywood", weight=9]; 4173 -> 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"];4174[label="yvy50/LT",fontsize=10,color="white",style="solid",shape="box"];223 -> 4174[label="",style="solid", color="burlywood", weight=9]; 4174 -> 248[label="",style="solid", color="burlywood", weight=3]; 4175[label="yvy50/EQ",fontsize=10,color="white",style="solid",shape="box"];223 -> 4175[label="",style="solid", color="burlywood", weight=9]; 4175 -> 249[label="",style="solid", color="burlywood", weight=3]; 4176[label="yvy50/GT",fontsize=10,color="white",style="solid",shape="box"];223 -> 4176[label="",style="solid", color="burlywood", weight=9]; 4176 -> 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"];4177[label="yvy52/LT",fontsize=10,color="white",style="solid",shape="box"];272 -> 4177[label="",style="solid", color="burlywood", weight=9]; 4177 -> 296[label="",style="solid", color="burlywood", weight=3]; 4178[label="yvy52/EQ",fontsize=10,color="white",style="solid",shape="box"];272 -> 4178[label="",style="solid", color="burlywood", weight=9]; 4178 -> 297[label="",style="solid", color="burlywood", weight=3]; 4179[label="yvy52/GT",fontsize=10,color="white",style="solid",shape="box"];272 -> 4179[label="",style="solid", color="burlywood", weight=9]; 4179 -> 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"];4180[label="yvy50/yvy500 : yvy501",fontsize=10,color="white",style="solid",shape="box"];81 -> 4180[label="",style="solid", color="burlywood", weight=9]; 4180 -> 111[label="",style="solid", color="burlywood", weight=3]; 4181[label="yvy50/[]",fontsize=10,color="white",style="solid",shape="box"];81 -> 4181[label="",style="solid", color="burlywood", weight=9]; 4181 -> 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"];4182[label="yvy50/yvy500 : yvy501",fontsize=10,color="white",style="solid",shape="box"];82 -> 4182[label="",style="solid", color="burlywood", weight=9]; 4182 -> 113[label="",style="solid", color="burlywood", weight=3]; 4183[label="yvy50/[]",fontsize=10,color="white",style="solid",shape="box"];82 -> 4183[label="",style="solid", color="burlywood", weight=9]; 4183 -> 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 -> 122[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"];4184[label="yvy34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];94 -> 4184[label="",style="solid", color="burlywood", weight=9]; 4184 -> 133[label="",style="solid", color="burlywood", weight=3]; 4185[label="yvy34/FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344",fontsize=10,color="white",style="solid",shape="box"];94 -> 4185[label="",style="solid", color="burlywood", weight=9]; 4185 -> 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 -> 122[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"];4186[label="yvy33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];108 -> 4186[label="",style="solid", color="burlywood", weight=9]; 4186 -> 155[label="",style="solid", color="burlywood", weight=3]; 4187[label="yvy33/FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334",fontsize=10,color="white",style="solid",shape="box"];108 -> 4187[label="",style="solid", color="burlywood", weight=9]; 4187 -> 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"];4188[label="yvy62/Pos yvy620",fontsize=10,color="white",style="solid",shape="box"];115 -> 4188[label="",style="solid", color="burlywood", weight=9]; 4188 -> 162[label="",style="solid", color="burlywood", weight=3]; 4189[label="yvy62/Neg yvy620",fontsize=10,color="white",style="solid",shape="box"];115 -> 4189[label="",style="solid", color="burlywood", weight=9]; 4189 -> 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"];122[label="compare yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];4190[label="yvy400/yvy4000 : yvy4001",fontsize=10,color="white",style="solid",shape="box"];122 -> 4190[label="",style="solid", color="burlywood", weight=9]; 4190 -> 170[label="",style="solid", color="burlywood", weight=3]; 4191[label="yvy400/[]",fontsize=10,color="white",style="solid",shape="box"];122 -> 4191[label="",style="solid", color="burlywood", weight=9]; 4191 -> 171[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]; 170[label="compare (yvy4000 : yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4192[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];170 -> 4192[label="",style="solid", color="burlywood", weight=9]; 4192 -> 211[label="",style="solid", color="burlywood", weight=3]; 4193[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];170 -> 4193[label="",style="solid", color="burlywood", weight=9]; 4193 -> 212[label="",style="solid", color="burlywood", weight=3]; 171[label="compare [] yvy300",fontsize=16,color="burlywood",shape="box"];4194[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];171 -> 4194[label="",style="solid", color="burlywood", weight=9]; 4194 -> 213[label="",style="solid", color="burlywood", weight=3]; 4195[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];171 -> 4195[label="",style="solid", color="burlywood", weight=9]; 4195 -> 214[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"];4196[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4196[label="",style="solid", color="blue", weight=9]; 4196 -> 312[label="",style="solid", color="blue", weight=3]; 4197[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4197[label="",style="solid", color="blue", weight=9]; 4197 -> 313[label="",style="solid", color="blue", weight=3]; 4198[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4198[label="",style="solid", color="blue", weight=9]; 4198 -> 314[label="",style="solid", color="blue", weight=3]; 4199[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4199[label="",style="solid", color="blue", weight=9]; 4199 -> 315[label="",style="solid", color="blue", weight=3]; 4200[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4200[label="",style="solid", color="blue", weight=9]; 4200 -> 316[label="",style="solid", color="blue", weight=3]; 4201[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4201[label="",style="solid", color="blue", weight=9]; 4201 -> 317[label="",style="solid", color="blue", weight=3]; 4202[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4202[label="",style="solid", color="blue", weight=9]; 4202 -> 318[label="",style="solid", color="blue", weight=3]; 4203[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4203[label="",style="solid", color="blue", weight=9]; 4203 -> 319[label="",style="solid", color="blue", weight=3]; 4204[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4204[label="",style="solid", color="blue", weight=9]; 4204 -> 320[label="",style="solid", color="blue", weight=3]; 4205[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4205[label="",style="solid", color="blue", weight=9]; 4205 -> 321[label="",style="solid", color="blue", weight=3]; 4206[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4206[label="",style="solid", color="blue", weight=9]; 4206 -> 322[label="",style="solid", color="blue", weight=3]; 4207[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4207[label="",style="solid", color="blue", weight=9]; 4207 -> 323[label="",style="solid", color="blue", weight=3]; 4208[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4208[label="",style="solid", color="blue", weight=9]; 4208 -> 324[label="",style="solid", color="blue", weight=3]; 4209[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4209[label="",style="solid", color="blue", weight=9]; 4209 -> 325[label="",style="solid", color="blue", weight=3]; 302[label="primCompAux0 yvy56 yvy57",fontsize=16,color="burlywood",shape="triangle"];4210[label="yvy57/LT",fontsize=10,color="white",style="solid",shape="box"];302 -> 4210[label="",style="solid", color="burlywood", weight=9]; 4210 -> 326[label="",style="solid", color="burlywood", weight=3]; 4211[label="yvy57/EQ",fontsize=10,color="white",style="solid",shape="box"];302 -> 4211[label="",style="solid", color="burlywood", weight=9]; 4211 -> 327[label="",style="solid", color="burlywood", weight=3]; 4212[label="yvy57/GT",fontsize=10,color="white",style="solid",shape="box"];302 -> 4212[label="",style="solid", color="burlywood", weight=9]; 4212 -> 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 -> 122[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"];4213[label="yvy45/LT",fontsize=10,color="white",style="solid",shape="box"];184 -> 4213[label="",style="solid", color="burlywood", weight=9]; 4213 -> 263[label="",style="solid", color="burlywood", weight=3]; 4214[label="yvy45/EQ",fontsize=10,color="white",style="solid",shape="box"];184 -> 4214[label="",style="solid", color="burlywood", weight=9]; 4214 -> 264[label="",style="solid", color="burlywood", weight=3]; 4215[label="yvy45/GT",fontsize=10,color="white",style="solid",shape="box"];184 -> 4215[label="",style="solid", color="burlywood", weight=9]; 4215 -> 265[label="",style="solid", color="burlywood", weight=3]; 187 -> 122[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"];4216[label="yvy46/LT",fontsize=10,color="white",style="solid",shape="box"];186 -> 4216[label="",style="solid", color="burlywood", weight=9]; 4216 -> 268[label="",style="solid", color="burlywood", weight=3]; 4217[label="yvy46/EQ",fontsize=10,color="white",style="solid",shape="box"];186 -> 4217[label="",style="solid", color="burlywood", weight=9]; 4217 -> 269[label="",style="solid", color="burlywood", weight=3]; 4218[label="yvy46/GT",fontsize=10,color="white",style="solid",shape="box"];186 -> 4218[label="",style="solid", color="burlywood", weight=9]; 4218 -> 270[label="",style="solid", color="burlywood", weight=3]; 351[label="FiniteMap.splitLT yvy40 (yvy42 : yvy43)",fontsize=16,color="burlywood",shape="triangle"];4219[label="yvy40/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];351 -> 4219[label="",style="solid", color="burlywood", weight=9]; 4219 -> 401[label="",style="solid", color="burlywood", weight=3]; 4220[label="yvy40/FiniteMap.Branch yvy400 yvy401 yvy402 yvy403 yvy404",fontsize=10,color="white",style="solid",shape="box"];351 -> 4220[label="",style="solid", color="burlywood", weight=9]; 4220 -> 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 -> 122[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"];4221[label="yvy47/LT",fontsize=10,color="white",style="solid",shape="box"];191 -> 4221[label="",style="solid", color="burlywood", weight=9]; 4221 -> 331[label="",style="solid", color="burlywood", weight=3]; 4222[label="yvy47/EQ",fontsize=10,color="white",style="solid",shape="box"];191 -> 4222[label="",style="solid", color="burlywood", weight=9]; 4222 -> 332[label="",style="solid", color="burlywood", weight=3]; 4223[label="yvy47/GT",fontsize=10,color="white",style="solid",shape="box"];191 -> 4223[label="",style="solid", color="burlywood", weight=9]; 4223 -> 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 -> 122[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"];4224[label="yvy48/LT",fontsize=10,color="white",style="solid",shape="box"];195 -> 4224[label="",style="solid", color="burlywood", weight=9]; 4224 -> 343[label="",style="solid", color="burlywood", weight=3]; 4225[label="yvy48/EQ",fontsize=10,color="white",style="solid",shape="box"];195 -> 4225[label="",style="solid", color="burlywood", weight=9]; 4225 -> 344[label="",style="solid", color="burlywood", weight=3]; 4226[label="yvy48/GT",fontsize=10,color="white",style="solid",shape="box"];195 -> 4226[label="",style="solid", color="burlywood", weight=9]; 4226 -> 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"];4227[label="yvy58/LT",fontsize=10,color="white",style="solid",shape="box"];348 -> 4227[label="",style="solid", color="burlywood", weight=9]; 4227 -> 359[label="",style="solid", color="burlywood", weight=3]; 4228[label="yvy58/EQ",fontsize=10,color="white",style="solid",shape="box"];348 -> 4228[label="",style="solid", color="burlywood", weight=9]; 4228 -> 360[label="",style="solid", color="burlywood", weight=3]; 4229[label="yvy58/GT",fontsize=10,color="white",style="solid",shape="box"];348 -> 4229[label="",style="solid", color="burlywood", weight=9]; 4229 -> 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"];4230[label="yvy620/Succ yvy6200",fontsize=10,color="white",style="solid",shape="box"];202 -> 4230[label="",style="solid", color="burlywood", weight=9]; 4230 -> 365[label="",style="solid", color="burlywood", weight=3]; 4231[label="yvy620/Zero",fontsize=10,color="white",style="solid",shape="box"];202 -> 4231[label="",style="solid", color="burlywood", weight=9]; 4231 -> 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"];4232[label="yvy620/Succ yvy6200",fontsize=10,color="white",style="solid",shape="box"];203 -> 4232[label="",style="solid", color="burlywood", weight=9]; 4232 -> 367[label="",style="solid", color="burlywood", weight=3]; 4233[label="yvy620/Zero",fontsize=10,color="white",style="solid",shape="box"];203 -> 4233[label="",style="solid", color="burlywood", weight=9]; 4233 -> 368[label="",style="solid", color="burlywood", weight=3]; 211[label="compare (yvy4000 : yvy4001) (yvy3000 : yvy3001)",fontsize=16,color="black",shape="box"];211 -> 369[label="",style="solid", color="black", weight=3]; 212[label="compare (yvy4000 : yvy4001) []",fontsize=16,color="black",shape="box"];212 -> 370[label="",style="solid", color="black", weight=3]; 213[label="compare [] (yvy3000 : yvy3001)",fontsize=16,color="black",shape="box"];213 -> 371[label="",style="solid", color="black", weight=3]; 214[label="compare [] []",fontsize=16,color="black",shape="box"];214 -> 372[label="",style="solid", color="black", weight=3]; 312[label="compare yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];4234[label="yvy400/()",fontsize=10,color="white",style="solid",shape="box"];312 -> 4234[label="",style="solid", color="burlywood", weight=9]; 4234 -> 373[label="",style="solid", color="burlywood", 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[label="compare yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];4235[label="yvy400/Integer yvy4000",fontsize=10,color="white",style="solid",shape="box"];315 -> 4235[label="",style="solid", color="burlywood", weight=9]; 4235 -> 376[label="",style="solid", color="burlywood", weight=3]; 316[label="compare yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];4236[label="yvy400/yvy4000 :% yvy4001",fontsize=10,color="white",style="solid",shape="box"];316 -> 4236[label="",style="solid", color="burlywood", weight=9]; 4236 -> 377[label="",style="solid", color="burlywood", weight=3]; 317[label="compare yvy400 yvy300",fontsize=16,color="black",shape="triangle"];317 -> 378[label="",style="solid", color="black", weight=3]; 318 -> 122[label="",style="dashed", color="red", weight=0]; 318[label="compare yvy400 yvy300",fontsize=16,color="magenta"];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="black",shape="triangle"];325 -> 385[label="",style="solid", color="black", 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 -> 122[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="compare () yvy300",fontsize=16,color="burlywood",shape="box"];4237[label="yvy300/()",fontsize=10,color="white",style="solid",shape="box"];373 -> 4237[label="",style="solid", color="burlywood", weight=9]; 4237 -> 426[label="",style="solid", color="burlywood", weight=3]; 374[label="compare3 yvy400 yvy300",fontsize=16,color="black",shape="box"];374 -> 427[label="",style="solid", color="black", weight=3]; 375[label="primCmpInt yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];4238[label="yvy400/Pos yvy4000",fontsize=10,color="white",style="solid",shape="box"];375 -> 4238[label="",style="solid", color="burlywood", weight=9]; 4238 -> 428[label="",style="solid", color="burlywood", weight=3]; 4239[label="yvy400/Neg yvy4000",fontsize=10,color="white",style="solid",shape="box"];375 -> 4239[label="",style="solid", color="burlywood", weight=9]; 4239 -> 429[label="",style="solid", color="burlywood", weight=3]; 376[label="compare (Integer yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4240[label="yvy300/Integer yvy3000",fontsize=10,color="white",style="solid",shape="box"];376 -> 4240[label="",style="solid", color="burlywood", weight=9]; 4240 -> 430[label="",style="solid", color="burlywood", weight=3]; 377[label="compare (yvy4000 :% yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4241[label="yvy300/yvy3000 :% yvy3001",fontsize=10,color="white",style="solid",shape="box"];377 -> 4241[label="",style="solid", color="burlywood", weight=9]; 4241 -> 431[label="",style="solid", color="burlywood", weight=3]; 378[label="primCmpFloat yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4242[label="yvy400/Float yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];378 -> 4242[label="",style="solid", color="burlywood", weight=9]; 4242 -> 432[label="",style="solid", color="burlywood", 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="primCmpChar yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4243[label="yvy400/Char yvy4000",fontsize=10,color="white",style="solid",shape="box"];382 -> 4243[label="",style="solid", color="burlywood", weight=9]; 4243 -> 436[label="",style="solid", color="burlywood", weight=3]; 383[label="primCmpDouble yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4244[label="yvy400/Double yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];383 -> 4244[label="",style="solid", color="burlywood", weight=9]; 4244 -> 437[label="",style="solid", color="burlywood", weight=3]; 384[label="compare3 yvy400 yvy300",fontsize=16,color="black",shape="box"];384 -> 438[label="",style="solid", color="black", weight=3]; 385[label="compare3 yvy400 yvy300",fontsize=16,color="black",shape="box"];385 -> 439[label="",style="solid", color="black", 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 -> 122[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"];4245[label="yvy59/LT",fontsize=10,color="white",style="solid",shape="box"];404 -> 4245[label="",style="solid", color="burlywood", weight=9]; 4245 -> 442[label="",style="solid", color="burlywood", weight=3]; 4246[label="yvy59/EQ",fontsize=10,color="white",style="solid",shape="box"];404 -> 4246[label="",style="solid", color="burlywood", weight=9]; 4246 -> 443[label="",style="solid", color="burlywood", weight=3]; 4247[label="yvy59/GT",fontsize=10,color="white",style="solid",shape="box"];404 -> 4247[label="",style="solid", color="burlywood", weight=9]; 4247 -> 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 -> 122[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"];4248[label="yvy60/LT",fontsize=10,color="white",style="solid",shape="box"];408 -> 4248[label="",style="solid", color="burlywood", weight=9]; 4248 -> 458[label="",style="solid", color="burlywood", weight=3]; 4249[label="yvy60/EQ",fontsize=10,color="white",style="solid",shape="box"];408 -> 4249[label="",style="solid", color="burlywood", weight=9]; 4249 -> 459[label="",style="solid", color="burlywood", weight=3]; 4250[label="yvy60/GT",fontsize=10,color="white",style="solid",shape="box"];408 -> 4250[label="",style="solid", color="burlywood", weight=9]; 4250 -> 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 -> 122[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="compare () ()",fontsize=16,color="black",shape="box"];426 -> 484[label="",style="solid", color="black", weight=3]; 427[label="compare2 yvy400 yvy300 (yvy400 == yvy300)",fontsize=16,color="burlywood",shape="box"];4251[label="yvy400/False",fontsize=10,color="white",style="solid",shape="box"];427 -> 4251[label="",style="solid", color="burlywood", weight=9]; 4251 -> 485[label="",style="solid", color="burlywood", weight=3]; 4252[label="yvy400/True",fontsize=10,color="white",style="solid",shape="box"];427 -> 4252[label="",style="solid", color="burlywood", weight=9]; 4252 -> 486[label="",style="solid", color="burlywood", weight=3]; 428[label="primCmpInt (Pos yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4253[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];428 -> 4253[label="",style="solid", color="burlywood", weight=9]; 4253 -> 487[label="",style="solid", color="burlywood", weight=3]; 4254[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];428 -> 4254[label="",style="solid", color="burlywood", weight=9]; 4254 -> 488[label="",style="solid", color="burlywood", weight=3]; 429[label="primCmpInt (Neg yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4255[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];429 -> 4255[label="",style="solid", color="burlywood", weight=9]; 4255 -> 489[label="",style="solid", color="burlywood", weight=3]; 4256[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];429 -> 4256[label="",style="solid", color="burlywood", weight=9]; 4256 -> 490[label="",style="solid", color="burlywood", weight=3]; 430[label="compare (Integer yvy4000) (Integer yvy3000)",fontsize=16,color="black",shape="box"];430 -> 491[label="",style="solid", color="black", weight=3]; 431[label="compare (yvy4000 :% yvy4001) (yvy3000 :% yvy3001)",fontsize=16,color="black",shape="box"];431 -> 492[label="",style="solid", color="black", weight=3]; 432[label="primCmpFloat (Float yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4257[label="yvy4001/Pos yvy40010",fontsize=10,color="white",style="solid",shape="box"];432 -> 4257[label="",style="solid", color="burlywood", weight=9]; 4257 -> 493[label="",style="solid", color="burlywood", weight=3]; 4258[label="yvy4001/Neg yvy40010",fontsize=10,color="white",style="solid",shape="box"];432 -> 4258[label="",style="solid", color="burlywood", weight=9]; 4258 -> 494[label="",style="solid", color="burlywood", weight=3]; 433[label="compare2 yvy400 yvy300 (yvy400 == yvy300)",fontsize=16,color="burlywood",shape="box"];4259[label="yvy400/(yvy4000,yvy4001,yvy4002)",fontsize=10,color="white",style="solid",shape="box"];433 -> 4259[label="",style="solid", color="burlywood", weight=9]; 4259 -> 495[label="",style="solid", color="burlywood", weight=3]; 434[label="compare2 yvy400 yvy300 (yvy400 == yvy300)",fontsize=16,color="burlywood",shape="box"];4260[label="yvy400/Nothing",fontsize=10,color="white",style="solid",shape="box"];434 -> 4260[label="",style="solid", color="burlywood", weight=9]; 4260 -> 496[label="",style="solid", color="burlywood", weight=3]; 4261[label="yvy400/Just yvy4000",fontsize=10,color="white",style="solid",shape="box"];434 -> 4261[label="",style="solid", color="burlywood", weight=9]; 4261 -> 497[label="",style="solid", color="burlywood", weight=3]; 435[label="compare2 yvy400 yvy300 (yvy400 == yvy300)",fontsize=16,color="burlywood",shape="box"];4262[label="yvy400/LT",fontsize=10,color="white",style="solid",shape="box"];435 -> 4262[label="",style="solid", color="burlywood", weight=9]; 4262 -> 498[label="",style="solid", color="burlywood", weight=3]; 4263[label="yvy400/EQ",fontsize=10,color="white",style="solid",shape="box"];435 -> 4263[label="",style="solid", color="burlywood", weight=9]; 4263 -> 499[label="",style="solid", color="burlywood", weight=3]; 4264[label="yvy400/GT",fontsize=10,color="white",style="solid",shape="box"];435 -> 4264[label="",style="solid", color="burlywood", weight=9]; 4264 -> 500[label="",style="solid", color="burlywood", weight=3]; 436[label="primCmpChar (Char yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4265[label="yvy300/Char yvy3000",fontsize=10,color="white",style="solid",shape="box"];436 -> 4265[label="",style="solid", color="burlywood", weight=9]; 4265 -> 501[label="",style="solid", color="burlywood", weight=3]; 437[label="primCmpDouble (Double yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4266[label="yvy4001/Pos yvy40010",fontsize=10,color="white",style="solid",shape="box"];437 -> 4266[label="",style="solid", color="burlywood", weight=9]; 4266 -> 502[label="",style="solid", color="burlywood", weight=3]; 4267[label="yvy4001/Neg yvy40010",fontsize=10,color="white",style="solid",shape="box"];437 -> 4267[label="",style="solid", color="burlywood", weight=9]; 4267 -> 503[label="",style="solid", color="burlywood", weight=3]; 438[label="compare2 yvy400 yvy300 (yvy400 == yvy300)",fontsize=16,color="burlywood",shape="box"];4268[label="yvy400/Left yvy4000",fontsize=10,color="white",style="solid",shape="box"];438 -> 4268[label="",style="solid", color="burlywood", weight=9]; 4268 -> 504[label="",style="solid", color="burlywood", weight=3]; 4269[label="yvy400/Right yvy4000",fontsize=10,color="white",style="solid",shape="box"];438 -> 4269[label="",style="solid", color="burlywood", weight=9]; 4269 -> 505[label="",style="solid", color="burlywood", weight=3]; 439[label="compare2 yvy400 yvy300 (yvy400 == yvy300)",fontsize=16,color="burlywood",shape="box"];4270[label="yvy400/(yvy4000,yvy4001)",fontsize=10,color="white",style="solid",shape="box"];439 -> 4270[label="",style="solid", color="burlywood", weight=9]; 4270 -> 506[label="",style="solid", color="burlywood", 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 -> 122[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"];4271[label="yvy62/LT",fontsize=10,color="white",style="solid",shape="box"];467 -> 4271[label="",style="solid", color="burlywood", weight=9]; 4271 -> 537[label="",style="solid", color="burlywood", weight=3]; 4272[label="yvy62/EQ",fontsize=10,color="white",style="solid",shape="box"];467 -> 4272[label="",style="solid", color="burlywood", weight=9]; 4272 -> 538[label="",style="solid", color="burlywood", weight=3]; 4273[label="yvy62/GT",fontsize=10,color="white",style="solid",shape="box"];467 -> 4273[label="",style="solid", color="burlywood", weight=9]; 4273 -> 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 -> 122[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"];4274[label="yvy63/LT",fontsize=10,color="white",style="solid",shape="box"];472 -> 4274[label="",style="solid", color="burlywood", weight=9]; 4274 -> 543[label="",style="solid", color="burlywood", weight=3]; 4275[label="yvy63/EQ",fontsize=10,color="white",style="solid",shape="box"];472 -> 4275[label="",style="solid", color="burlywood", weight=9]; 4275 -> 544[label="",style="solid", color="burlywood", weight=3]; 4276[label="yvy63/GT",fontsize=10,color="white",style="solid",shape="box"];472 -> 4276[label="",style="solid", color="burlywood", weight=9]; 4276 -> 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"];4277[label="yvy64/LT",fontsize=10,color="white",style="solid",shape="box"];474 -> 4277[label="",style="solid", color="burlywood", weight=9]; 4277 -> 548[label="",style="solid", color="burlywood", weight=3]; 4278[label="yvy64/EQ",fontsize=10,color="white",style="solid",shape="box"];474 -> 4278[label="",style="solid", color="burlywood", weight=9]; 4278 -> 549[label="",style="solid", color="burlywood", weight=3]; 4279[label="yvy64/GT",fontsize=10,color="white",style="solid",shape="box"];474 -> 4279[label="",style="solid", color="burlywood", weight=9]; 4279 -> 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"];4280[label="yvy65/LT",fontsize=10,color="white",style="solid",shape="box"];476 -> 4280[label="",style="solid", color="burlywood", weight=9]; 4280 -> 553[label="",style="solid", color="burlywood", weight=3]; 4281[label="yvy65/EQ",fontsize=10,color="white",style="solid",shape="box"];476 -> 4281[label="",style="solid", color="burlywood", weight=9]; 4281 -> 554[label="",style="solid", color="burlywood", weight=3]; 4282[label="yvy65/GT",fontsize=10,color="white",style="solid",shape="box"];476 -> 4282[label="",style="solid", color="burlywood", weight=9]; 4282 -> 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"];4283[label="yvy66/LT",fontsize=10,color="white",style="solid",shape="box"];478 -> 4283[label="",style="solid", color="burlywood", weight=9]; 4283 -> 558[label="",style="solid", color="burlywood", weight=3]; 4284[label="yvy66/EQ",fontsize=10,color="white",style="solid",shape="box"];478 -> 4284[label="",style="solid", color="burlywood", weight=9]; 4284 -> 559[label="",style="solid", color="burlywood", weight=3]; 4285[label="yvy66/GT",fontsize=10,color="white",style="solid",shape="box"];478 -> 4285[label="",style="solid", color="burlywood", weight=9]; 4285 -> 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"];4286[label="yvy67/LT",fontsize=10,color="white",style="solid",shape="box"];480 -> 4286[label="",style="solid", color="burlywood", weight=9]; 4286 -> 563[label="",style="solid", color="burlywood", weight=3]; 4287[label="yvy67/EQ",fontsize=10,color="white",style="solid",shape="box"];480 -> 4287[label="",style="solid", color="burlywood", weight=9]; 4287 -> 564[label="",style="solid", color="burlywood", weight=3]; 4288[label="yvy67/GT",fontsize=10,color="white",style="solid",shape="box"];480 -> 4288[label="",style="solid", color="burlywood", weight=9]; 4288 -> 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="EQ",fontsize=16,color="green",shape="box"];485[label="compare2 False yvy300 (False == yvy300)",fontsize=16,color="burlywood",shape="box"];4289[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];485 -> 4289[label="",style="solid", color="burlywood", weight=9]; 4289 -> 566[label="",style="solid", color="burlywood", weight=3]; 4290[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];485 -> 4290[label="",style="solid", color="burlywood", weight=9]; 4290 -> 567[label="",style="solid", color="burlywood", weight=3]; 486[label="compare2 True yvy300 (True == yvy300)",fontsize=16,color="burlywood",shape="box"];4291[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];486 -> 4291[label="",style="solid", color="burlywood", weight=9]; 4291 -> 568[label="",style="solid", color="burlywood", weight=3]; 4292[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];486 -> 4292[label="",style="solid", color="burlywood", weight=9]; 4292 -> 569[label="",style="solid", color="burlywood", weight=3]; 487[label="primCmpInt (Pos (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];4293[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];487 -> 4293[label="",style="solid", color="burlywood", weight=9]; 4293 -> 570[label="",style="solid", color="burlywood", weight=3]; 4294[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];487 -> 4294[label="",style="solid", color="burlywood", weight=9]; 4294 -> 571[label="",style="solid", color="burlywood", weight=3]; 488[label="primCmpInt (Pos Zero) yvy300",fontsize=16,color="burlywood",shape="box"];4295[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];488 -> 4295[label="",style="solid", color="burlywood", weight=9]; 4295 -> 572[label="",style="solid", color="burlywood", weight=3]; 4296[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];488 -> 4296[label="",style="solid", color="burlywood", weight=9]; 4296 -> 573[label="",style="solid", color="burlywood", weight=3]; 489[label="primCmpInt (Neg (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];4297[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];489 -> 4297[label="",style="solid", color="burlywood", weight=9]; 4297 -> 574[label="",style="solid", color="burlywood", weight=3]; 4298[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];489 -> 4298[label="",style="solid", color="burlywood", weight=9]; 4298 -> 575[label="",style="solid", color="burlywood", weight=3]; 490[label="primCmpInt (Neg Zero) yvy300",fontsize=16,color="burlywood",shape="box"];4299[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];490 -> 4299[label="",style="solid", color="burlywood", weight=9]; 4299 -> 576[label="",style="solid", color="burlywood", weight=3]; 4300[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];490 -> 4300[label="",style="solid", color="burlywood", weight=9]; 4300 -> 577[label="",style="solid", color="burlywood", weight=3]; 491 -> 375[label="",style="dashed", color="red", weight=0]; 491[label="primCmpInt yvy4000 yvy3000",fontsize=16,color="magenta"];491 -> 578[label="",style="dashed", color="magenta", weight=3]; 491 -> 579[label="",style="dashed", color="magenta", weight=3]; 492[label="compare (yvy4000 * yvy3001) (yvy3000 * yvy4001)",fontsize=16,color="blue",shape="box"];4301[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];492 -> 4301[label="",style="solid", color="blue", weight=9]; 4301 -> 580[label="",style="solid", color="blue", weight=3]; 4302[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];492 -> 4302[label="",style="solid", color="blue", weight=9]; 4302 -> 581[label="",style="solid", color="blue", weight=3]; 493[label="primCmpFloat (Float yvy4000 (Pos yvy40010)) yvy300",fontsize=16,color="burlywood",shape="box"];4303[label="yvy300/Float yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];493 -> 4303[label="",style="solid", color="burlywood", weight=9]; 4303 -> 582[label="",style="solid", color="burlywood", weight=3]; 494[label="primCmpFloat (Float yvy4000 (Neg yvy40010)) yvy300",fontsize=16,color="burlywood",shape="box"];4304[label="yvy300/Float yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];494 -> 4304[label="",style="solid", color="burlywood", weight=9]; 4304 -> 583[label="",style="solid", color="burlywood", weight=3]; 495[label="compare2 (yvy4000,yvy4001,yvy4002) yvy300 ((yvy4000,yvy4001,yvy4002) == yvy300)",fontsize=16,color="burlywood",shape="box"];4305[label="yvy300/(yvy3000,yvy3001,yvy3002)",fontsize=10,color="white",style="solid",shape="box"];495 -> 4305[label="",style="solid", color="burlywood", weight=9]; 4305 -> 584[label="",style="solid", color="burlywood", weight=3]; 496[label="compare2 Nothing yvy300 (Nothing == yvy300)",fontsize=16,color="burlywood",shape="box"];4306[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];496 -> 4306[label="",style="solid", color="burlywood", weight=9]; 4306 -> 585[label="",style="solid", color="burlywood", weight=3]; 4307[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];496 -> 4307[label="",style="solid", color="burlywood", weight=9]; 4307 -> 586[label="",style="solid", color="burlywood", weight=3]; 497[label="compare2 (Just yvy4000) yvy300 (Just yvy4000 == yvy300)",fontsize=16,color="burlywood",shape="box"];4308[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];497 -> 4308[label="",style="solid", color="burlywood", weight=9]; 4308 -> 587[label="",style="solid", color="burlywood", weight=3]; 4309[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];497 -> 4309[label="",style="solid", color="burlywood", weight=9]; 4309 -> 588[label="",style="solid", color="burlywood", weight=3]; 498[label="compare2 LT yvy300 (LT == yvy300)",fontsize=16,color="burlywood",shape="box"];4310[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];498 -> 4310[label="",style="solid", color="burlywood", weight=9]; 4310 -> 589[label="",style="solid", color="burlywood", weight=3]; 4311[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];498 -> 4311[label="",style="solid", color="burlywood", weight=9]; 4311 -> 590[label="",style="solid", color="burlywood", weight=3]; 4312[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];498 -> 4312[label="",style="solid", color="burlywood", weight=9]; 4312 -> 591[label="",style="solid", color="burlywood", weight=3]; 499[label="compare2 EQ yvy300 (EQ == yvy300)",fontsize=16,color="burlywood",shape="box"];4313[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];499 -> 4313[label="",style="solid", color="burlywood", weight=9]; 4313 -> 592[label="",style="solid", color="burlywood", weight=3]; 4314[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];499 -> 4314[label="",style="solid", color="burlywood", weight=9]; 4314 -> 593[label="",style="solid", color="burlywood", weight=3]; 4315[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];499 -> 4315[label="",style="solid", color="burlywood", weight=9]; 4315 -> 594[label="",style="solid", color="burlywood", weight=3]; 500[label="compare2 GT yvy300 (GT == yvy300)",fontsize=16,color="burlywood",shape="box"];4316[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];500 -> 4316[label="",style="solid", color="burlywood", weight=9]; 4316 -> 595[label="",style="solid", color="burlywood", weight=3]; 4317[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];500 -> 4317[label="",style="solid", color="burlywood", weight=9]; 4317 -> 596[label="",style="solid", color="burlywood", weight=3]; 4318[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];500 -> 4318[label="",style="solid", color="burlywood", weight=9]; 4318 -> 597[label="",style="solid", color="burlywood", weight=3]; 501[label="primCmpChar (Char yvy4000) (Char yvy3000)",fontsize=16,color="black",shape="box"];501 -> 598[label="",style="solid", color="black", weight=3]; 502[label="primCmpDouble (Double yvy4000 (Pos yvy40010)) yvy300",fontsize=16,color="burlywood",shape="box"];4319[label="yvy300/Double yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];502 -> 4319[label="",style="solid", color="burlywood", weight=9]; 4319 -> 599[label="",style="solid", color="burlywood", weight=3]; 503[label="primCmpDouble (Double yvy4000 (Neg yvy40010)) yvy300",fontsize=16,color="burlywood",shape="box"];4320[label="yvy300/Double yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];503 -> 4320[label="",style="solid", color="burlywood", weight=9]; 4320 -> 600[label="",style="solid", color="burlywood", weight=3]; 504[label="compare2 (Left yvy4000) yvy300 (Left yvy4000 == yvy300)",fontsize=16,color="burlywood",shape="box"];4321[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];504 -> 4321[label="",style="solid", color="burlywood", weight=9]; 4321 -> 601[label="",style="solid", color="burlywood", weight=3]; 4322[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];504 -> 4322[label="",style="solid", color="burlywood", weight=9]; 4322 -> 602[label="",style="solid", color="burlywood", weight=3]; 505[label="compare2 (Right yvy4000) yvy300 (Right yvy4000 == yvy300)",fontsize=16,color="burlywood",shape="box"];4323[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];505 -> 4323[label="",style="solid", color="burlywood", weight=9]; 4323 -> 603[label="",style="solid", color="burlywood", weight=3]; 4324[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];505 -> 4324[label="",style="solid", color="burlywood", weight=9]; 4324 -> 604[label="",style="solid", color="burlywood", weight=3]; 506[label="compare2 (yvy4000,yvy4001) yvy300 ((yvy4000,yvy4001) == yvy300)",fontsize=16,color="burlywood",shape="box"];4325[label="yvy300/(yvy3000,yvy3001)",fontsize=10,color="white",style="solid",shape="box"];506 -> 4325[label="",style="solid", color="burlywood", weight=9]; 4325 -> 605[label="",style="solid", color="burlywood", 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"];4326[label="yvy33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];512 -> 4326[label="",style="solid", color="burlywood", weight=9]; 4326 -> 608[label="",style="solid", color="burlywood", weight=3]; 4327[label="yvy33/FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334",fontsize=10,color="white",style="solid",shape="box"];512 -> 4327[label="",style="solid", color="burlywood", weight=9]; 4327 -> 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="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];566 -> 649[label="",style="solid", color="black", weight=3]; 567[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];567 -> 650[label="",style="solid", color="black", weight=3]; 568[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];568 -> 651[label="",style="solid", color="black", weight=3]; 569[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];569 -> 652[label="",style="solid", color="black", weight=3]; 570[label="primCmpInt (Pos (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="black",shape="box"];570 -> 653[label="",style="solid", color="black", weight=3]; 571[label="primCmpInt (Pos (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="black",shape="box"];571 -> 654[label="",style="solid", color="black", weight=3]; 572[label="primCmpInt (Pos Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4328[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];572 -> 4328[label="",style="solid", color="burlywood", weight=9]; 4328 -> 655[label="",style="solid", color="burlywood", weight=3]; 4329[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];572 -> 4329[label="",style="solid", color="burlywood", weight=9]; 4329 -> 656[label="",style="solid", color="burlywood", weight=3]; 573[label="primCmpInt (Pos Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4330[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];573 -> 4330[label="",style="solid", color="burlywood", weight=9]; 4330 -> 657[label="",style="solid", color="burlywood", weight=3]; 4331[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];573 -> 4331[label="",style="solid", color="burlywood", weight=9]; 4331 -> 658[label="",style="solid", color="burlywood", weight=3]; 574[label="primCmpInt (Neg (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="black",shape="box"];574 -> 659[label="",style="solid", color="black", weight=3]; 575[label="primCmpInt (Neg (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="black",shape="box"];575 -> 660[label="",style="solid", color="black", weight=3]; 576[label="primCmpInt (Neg Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4332[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];576 -> 4332[label="",style="solid", color="burlywood", weight=9]; 4332 -> 661[label="",style="solid", color="burlywood", weight=3]; 4333[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];576 -> 4333[label="",style="solid", color="burlywood", weight=9]; 4333 -> 662[label="",style="solid", color="burlywood", weight=3]; 577[label="primCmpInt (Neg Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4334[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];577 -> 4334[label="",style="solid", color="burlywood", weight=9]; 4334 -> 663[label="",style="solid", color="burlywood", weight=3]; 4335[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];577 -> 4335[label="",style="solid", color="burlywood", weight=9]; 4335 -> 664[label="",style="solid", color="burlywood", weight=3]; 578[label="yvy3000",fontsize=16,color="green",shape="box"];579[label="yvy4000",fontsize=16,color="green",shape="box"];580 -> 314[label="",style="dashed", color="red", weight=0]; 580[label="compare (yvy4000 * yvy3001) (yvy3000 * yvy4001)",fontsize=16,color="magenta"];580 -> 665[label="",style="dashed", color="magenta", weight=3]; 580 -> 666[label="",style="dashed", color="magenta", weight=3]; 581 -> 315[label="",style="dashed", color="red", weight=0]; 581[label="compare (yvy4000 * yvy3001) (yvy3000 * yvy4001)",fontsize=16,color="magenta"];581 -> 667[label="",style="dashed", color="magenta", weight=3]; 581 -> 668[label="",style="dashed", color="magenta", weight=3]; 582[label="primCmpFloat (Float yvy4000 (Pos yvy40010)) (Float yvy3000 yvy3001)",fontsize=16,color="burlywood",shape="box"];4336[label="yvy3001/Pos yvy30010",fontsize=10,color="white",style="solid",shape="box"];582 -> 4336[label="",style="solid", color="burlywood", weight=9]; 4336 -> 669[label="",style="solid", color="burlywood", weight=3]; 4337[label="yvy3001/Neg yvy30010",fontsize=10,color="white",style="solid",shape="box"];582 -> 4337[label="",style="solid", color="burlywood", weight=9]; 4337 -> 670[label="",style="solid", color="burlywood", weight=3]; 583[label="primCmpFloat (Float yvy4000 (Neg yvy40010)) (Float yvy3000 yvy3001)",fontsize=16,color="burlywood",shape="box"];4338[label="yvy3001/Pos yvy30010",fontsize=10,color="white",style="solid",shape="box"];583 -> 4338[label="",style="solid", color="burlywood", weight=9]; 4338 -> 671[label="",style="solid", color="burlywood", weight=3]; 4339[label="yvy3001/Neg yvy30010",fontsize=10,color="white",style="solid",shape="box"];583 -> 4339[label="",style="solid", color="burlywood", weight=9]; 4339 -> 672[label="",style="solid", color="burlywood", weight=3]; 584[label="compare2 (yvy4000,yvy4001,yvy4002) (yvy3000,yvy3001,yvy3002) ((yvy4000,yvy4001,yvy4002) == (yvy3000,yvy3001,yvy3002))",fontsize=16,color="black",shape="box"];584 -> 673[label="",style="solid", color="black", weight=3]; 585[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];585 -> 674[label="",style="solid", color="black", weight=3]; 586[label="compare2 Nothing (Just yvy3000) (Nothing == Just yvy3000)",fontsize=16,color="black",shape="box"];586 -> 675[label="",style="solid", color="black", weight=3]; 587[label="compare2 (Just yvy4000) Nothing (Just yvy4000 == Nothing)",fontsize=16,color="black",shape="box"];587 -> 676[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 -> 677[label="",style="solid", color="black", weight=3]; 589[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];589 -> 678[label="",style="solid", color="black", weight=3]; 590[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];590 -> 679[label="",style="solid", color="black", weight=3]; 591[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];591 -> 680[label="",style="solid", color="black", weight=3]; 592[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];592 -> 681[label="",style="solid", color="black", weight=3]; 593[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];593 -> 682[label="",style="solid", color="black", weight=3]; 594[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];594 -> 683[label="",style="solid", color="black", weight=3]; 595[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];595 -> 684[label="",style="solid", color="black", weight=3]; 596[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];596 -> 685[label="",style="solid", color="black", weight=3]; 597[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];597 -> 686[label="",style="solid", color="black", weight=3]; 598[label="primCmpNat yvy4000 yvy3000",fontsize=16,color="burlywood",shape="triangle"];4340[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];598 -> 4340[label="",style="solid", color="burlywood", weight=9]; 4340 -> 687[label="",style="solid", color="burlywood", weight=3]; 4341[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];598 -> 4341[label="",style="solid", color="burlywood", weight=9]; 4341 -> 688[label="",style="solid", color="burlywood", weight=3]; 599[label="primCmpDouble (Double yvy4000 (Pos yvy40010)) (Double yvy3000 yvy3001)",fontsize=16,color="burlywood",shape="box"];4342[label="yvy3001/Pos yvy30010",fontsize=10,color="white",style="solid",shape="box"];599 -> 4342[label="",style="solid", color="burlywood", weight=9]; 4342 -> 689[label="",style="solid", color="burlywood", weight=3]; 4343[label="yvy3001/Neg yvy30010",fontsize=10,color="white",style="solid",shape="box"];599 -> 4343[label="",style="solid", color="burlywood", weight=9]; 4343 -> 690[label="",style="solid", color="burlywood", weight=3]; 600[label="primCmpDouble (Double yvy4000 (Neg yvy40010)) (Double yvy3000 yvy3001)",fontsize=16,color="burlywood",shape="box"];4344[label="yvy3001/Pos yvy30010",fontsize=10,color="white",style="solid",shape="box"];600 -> 4344[label="",style="solid", color="burlywood", weight=9]; 4344 -> 691[label="",style="solid", color="burlywood", weight=3]; 4345[label="yvy3001/Neg yvy30010",fontsize=10,color="white",style="solid",shape="box"];600 -> 4345[label="",style="solid", color="burlywood", weight=9]; 4345 -> 692[label="",style="solid", color="burlywood", weight=3]; 601[label="compare2 (Left yvy4000) (Left yvy3000) (Left yvy4000 == Left yvy3000)",fontsize=16,color="black",shape="box"];601 -> 693[label="",style="solid", color="black", weight=3]; 602[label="compare2 (Left yvy4000) (Right yvy3000) (Left yvy4000 == Right yvy3000)",fontsize=16,color="black",shape="box"];602 -> 694[label="",style="solid", color="black", weight=3]; 603[label="compare2 (Right yvy4000) (Left yvy3000) (Right yvy4000 == Left yvy3000)",fontsize=16,color="black",shape="box"];603 -> 695[label="",style="solid", color="black", weight=3]; 604[label="compare2 (Right yvy4000) (Right yvy3000) (Right yvy4000 == Right yvy3000)",fontsize=16,color="black",shape="box"];604 -> 696[label="",style="solid", color="black", weight=3]; 605[label="compare2 (yvy4000,yvy4001) (yvy3000,yvy3001) ((yvy4000,yvy4001) == (yvy3000,yvy3001))",fontsize=16,color="black",shape="box"];605 -> 697[label="",style="solid", color="black", 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 -> 122[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"];4346[label="yvy68/LT",fontsize=10,color="white",style="solid",shape="box"];622 -> 4346[label="",style="solid", color="burlywood", weight=9]; 4346 -> 712[label="",style="solid", color="burlywood", weight=3]; 4347[label="yvy68/EQ",fontsize=10,color="white",style="solid",shape="box"];622 -> 4347[label="",style="solid", color="burlywood", weight=9]; 4347 -> 713[label="",style="solid", color="burlywood", weight=3]; 4348[label="yvy68/GT",fontsize=10,color="white",style="solid",shape="box"];622 -> 4348[label="",style="solid", color="burlywood", weight=9]; 4348 -> 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 -> 2685[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 -> 2686[label="",style="dashed", color="magenta", weight=3]; 632 -> 2687[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 -> 2685[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 -> 2688[label="",style="dashed", color="magenta", weight=3]; 641 -> 2689[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="compare2 False False True",fontsize=16,color="black",shape="box"];649 -> 732[label="",style="solid", color="black", weight=3]; 650[label="compare2 False True False",fontsize=16,color="black",shape="box"];650 -> 733[label="",style="solid", color="black", weight=3]; 651[label="compare2 True False False",fontsize=16,color="black",shape="box"];651 -> 734[label="",style="solid", color="black", weight=3]; 652[label="compare2 True True True",fontsize=16,color="black",shape="box"];652 -> 735[label="",style="solid", color="black", weight=3]; 653 -> 598[label="",style="dashed", color="red", weight=0]; 653[label="primCmpNat (Succ yvy40000) yvy3000",fontsize=16,color="magenta"];653 -> 736[label="",style="dashed", color="magenta", weight=3]; 653 -> 737[label="",style="dashed", color="magenta", weight=3]; 654[label="GT",fontsize=16,color="green",shape="box"];655[label="primCmpInt (Pos Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];655 -> 738[label="",style="solid", color="black", weight=3]; 656[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];656 -> 739[label="",style="solid", color="black", weight=3]; 657[label="primCmpInt (Pos Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];657 -> 740[label="",style="solid", color="black", weight=3]; 658[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];658 -> 741[label="",style="solid", color="black", weight=3]; 659[label="LT",fontsize=16,color="green",shape="box"];660 -> 598[label="",style="dashed", color="red", weight=0]; 660[label="primCmpNat yvy3000 (Succ yvy40000)",fontsize=16,color="magenta"];660 -> 742[label="",style="dashed", color="magenta", weight=3]; 660 -> 743[label="",style="dashed", color="magenta", weight=3]; 661[label="primCmpInt (Neg Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];661 -> 744[label="",style="solid", color="black", weight=3]; 662[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];662 -> 745[label="",style="solid", color="black", weight=3]; 663[label="primCmpInt (Neg Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];663 -> 746[label="",style="solid", color="black", weight=3]; 664[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];664 -> 747[label="",style="solid", color="black", weight=3]; 665[label="yvy3000 * yvy4001",fontsize=16,color="black",shape="triangle"];665 -> 748[label="",style="solid", color="black", weight=3]; 666 -> 665[label="",style="dashed", color="red", weight=0]; 666[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];666 -> 749[label="",style="dashed", color="magenta", weight=3]; 666 -> 750[label="",style="dashed", color="magenta", weight=3]; 667[label="yvy3000 * yvy4001",fontsize=16,color="burlywood",shape="triangle"];4349[label="yvy3000/Integer yvy30000",fontsize=10,color="white",style="solid",shape="box"];667 -> 4349[label="",style="solid", color="burlywood", weight=9]; 4349 -> 751[label="",style="solid", color="burlywood", weight=3]; 668 -> 667[label="",style="dashed", color="red", weight=0]; 668[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];668 -> 752[label="",style="dashed", color="magenta", weight=3]; 668 -> 753[label="",style="dashed", color="magenta", weight=3]; 669[label="primCmpFloat (Float yvy4000 (Pos yvy40010)) (Float yvy3000 (Pos yvy30010))",fontsize=16,color="black",shape="box"];669 -> 754[label="",style="solid", color="black", weight=3]; 670[label="primCmpFloat (Float yvy4000 (Pos yvy40010)) (Float yvy3000 (Neg yvy30010))",fontsize=16,color="black",shape="box"];670 -> 755[label="",style="solid", color="black", weight=3]; 671[label="primCmpFloat (Float yvy4000 (Neg yvy40010)) (Float yvy3000 (Pos yvy30010))",fontsize=16,color="black",shape="box"];671 -> 756[label="",style="solid", color="black", weight=3]; 672[label="primCmpFloat (Float yvy4000 (Neg yvy40010)) (Float yvy3000 (Neg yvy30010))",fontsize=16,color="black",shape="box"];672 -> 757[label="",style="solid", color="black", weight=3]; 673 -> 1518[label="",style="dashed", color="red", weight=0]; 673[label="compare2 (yvy4000,yvy4001,yvy4002) (yvy3000,yvy3001,yvy3002) (yvy4000 == yvy3000 && yvy4001 == yvy3001 && yvy4002 == yvy3002)",fontsize=16,color="magenta"];673 -> 1519[label="",style="dashed", color="magenta", weight=3]; 673 -> 1520[label="",style="dashed", color="magenta", weight=3]; 673 -> 1521[label="",style="dashed", color="magenta", weight=3]; 673 -> 1522[label="",style="dashed", color="magenta", weight=3]; 673 -> 1523[label="",style="dashed", color="magenta", weight=3]; 673 -> 1524[label="",style="dashed", color="magenta", weight=3]; 673 -> 1525[label="",style="dashed", color="magenta", weight=3]; 674[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];674 -> 766[label="",style="solid", color="black", weight=3]; 675[label="compare2 Nothing (Just yvy3000) False",fontsize=16,color="black",shape="box"];675 -> 767[label="",style="solid", color="black", weight=3]; 676[label="compare2 (Just yvy4000) Nothing False",fontsize=16,color="black",shape="box"];676 -> 768[label="",style="solid", color="black", weight=3]; 677 -> 769[label="",style="dashed", color="red", weight=0]; 677[label="compare2 (Just yvy4000) (Just yvy3000) (yvy4000 == yvy3000)",fontsize=16,color="magenta"];677 -> 770[label="",style="dashed", color="magenta", weight=3]; 677 -> 771[label="",style="dashed", color="magenta", weight=3]; 677 -> 772[label="",style="dashed", color="magenta", weight=3]; 678[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];678 -> 773[label="",style="solid", color="black", weight=3]; 679[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];679 -> 774[label="",style="solid", color="black", weight=3]; 680[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];680 -> 775[label="",style="solid", color="black", weight=3]; 681[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];681 -> 776[label="",style="solid", color="black", weight=3]; 682[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];682 -> 777[label="",style="solid", color="black", weight=3]; 683[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];683 -> 778[label="",style="solid", color="black", weight=3]; 684[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];684 -> 779[label="",style="solid", color="black", weight=3]; 685[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];685 -> 780[label="",style="solid", color="black", weight=3]; 686[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];686 -> 781[label="",style="solid", color="black", weight=3]; 687[label="primCmpNat (Succ yvy40000) yvy3000",fontsize=16,color="burlywood",shape="box"];4350[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];687 -> 4350[label="",style="solid", color="burlywood", weight=9]; 4350 -> 782[label="",style="solid", color="burlywood", weight=3]; 4351[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];687 -> 4351[label="",style="solid", color="burlywood", weight=9]; 4351 -> 783[label="",style="solid", color="burlywood", weight=3]; 688[label="primCmpNat Zero yvy3000",fontsize=16,color="burlywood",shape="box"];4352[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];688 -> 4352[label="",style="solid", color="burlywood", weight=9]; 4352 -> 784[label="",style="solid", color="burlywood", weight=3]; 4353[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];688 -> 4353[label="",style="solid", color="burlywood", weight=9]; 4353 -> 785[label="",style="solid", color="burlywood", weight=3]; 689[label="primCmpDouble (Double yvy4000 (Pos yvy40010)) (Double yvy3000 (Pos yvy30010))",fontsize=16,color="black",shape="box"];689 -> 786[label="",style="solid", color="black", weight=3]; 690[label="primCmpDouble (Double yvy4000 (Pos yvy40010)) (Double yvy3000 (Neg yvy30010))",fontsize=16,color="black",shape="box"];690 -> 787[label="",style="solid", color="black", weight=3]; 691[label="primCmpDouble (Double yvy4000 (Neg yvy40010)) (Double yvy3000 (Pos yvy30010))",fontsize=16,color="black",shape="box"];691 -> 788[label="",style="solid", color="black", weight=3]; 692[label="primCmpDouble (Double yvy4000 (Neg yvy40010)) (Double yvy3000 (Neg yvy30010))",fontsize=16,color="black",shape="box"];692 -> 789[label="",style="solid", color="black", weight=3]; 693 -> 790[label="",style="dashed", color="red", weight=0]; 693[label="compare2 (Left yvy4000) (Left yvy3000) (yvy4000 == yvy3000)",fontsize=16,color="magenta"];693 -> 791[label="",style="dashed", color="magenta", weight=3]; 693 -> 792[label="",style="dashed", color="magenta", weight=3]; 693 -> 793[label="",style="dashed", color="magenta", weight=3]; 694[label="compare2 (Left yvy4000) (Right yvy3000) False",fontsize=16,color="black",shape="box"];694 -> 794[label="",style="solid", color="black", weight=3]; 695[label="compare2 (Right yvy4000) (Left yvy3000) False",fontsize=16,color="black",shape="box"];695 -> 795[label="",style="solid", color="black", weight=3]; 696 -> 796[label="",style="dashed", color="red", weight=0]; 696[label="compare2 (Right yvy4000) (Right yvy3000) (yvy4000 == yvy3000)",fontsize=16,color="magenta"];696 -> 797[label="",style="dashed", color="magenta", weight=3]; 696 -> 798[label="",style="dashed", color="magenta", weight=3]; 696 -> 799[label="",style="dashed", color="magenta", weight=3]; 697 -> 1345[label="",style="dashed", color="red", weight=0]; 697[label="compare2 (yvy4000,yvy4001) (yvy3000,yvy3001) (yvy4000 == yvy3000 && yvy4001 == yvy3001)",fontsize=16,color="magenta"];697 -> 1346[label="",style="dashed", color="magenta", weight=3]; 697 -> 1347[label="",style="dashed", color="magenta", weight=3]; 697 -> 1348[label="",style="dashed", color="magenta", weight=3]; 697 -> 1349[label="",style="dashed", color="magenta", weight=3]; 697 -> 1350[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"];4354[label="yvy125/LT",fontsize=10,color="white",style="solid",shape="box"];866 -> 4354[label="",style="solid", color="burlywood", weight=9]; 4354 -> 870[label="",style="solid", color="burlywood", weight=3]; 4355[label="yvy125/EQ",fontsize=10,color="white",style="solid",shape="box"];866 -> 4355[label="",style="solid", color="burlywood", weight=9]; 4355 -> 871[label="",style="solid", color="burlywood", weight=3]; 4356[label="yvy125/GT",fontsize=10,color="white",style="solid",shape="box"];866 -> 4356[label="",style="solid", color="burlywood", weight=9]; 4356 -> 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"];2686 -> 1460[label="",style="dashed", color="red", weight=0]; 2686[label="primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy6200)",fontsize=16,color="magenta"];2686 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2687[label="yvy6200",fontsize=16,color="green",shape="box"];2685[label="primPlusNat yvy307 (Succ yvy400100)",fontsize=16,color="burlywood",shape="triangle"];4357[label="yvy307/Succ yvy3070",fontsize=10,color="white",style="solid",shape="box"];2685 -> 4357[label="",style="solid", color="burlywood", weight=9]; 4357 -> 2711[label="",style="solid", color="burlywood", weight=3]; 4358[label="yvy307/Zero",fontsize=10,color="white",style="solid",shape="box"];2685 -> 4358[label="",style="solid", color="burlywood", weight=9]; 4358 -> 2712[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]; 2688 -> 1460[label="",style="dashed", color="red", weight=0]; 2688[label="primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy6200)",fontsize=16,color="magenta"];2688 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2689[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[label="EQ",fontsize=16,color="green",shape="box"];733[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];733 -> 875[label="",style="solid", color="black", weight=3]; 734[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];734 -> 876[label="",style="solid", color="black", weight=3]; 735[label="EQ",fontsize=16,color="green",shape="box"];736[label="yvy3000",fontsize=16,color="green",shape="box"];737[label="Succ yvy40000",fontsize=16,color="green",shape="box"];738 -> 598[label="",style="dashed", color="red", weight=0]; 738[label="primCmpNat Zero (Succ yvy30000)",fontsize=16,color="magenta"];738 -> 877[label="",style="dashed", color="magenta", weight=3]; 738 -> 878[label="",style="dashed", color="magenta", weight=3]; 739[label="EQ",fontsize=16,color="green",shape="box"];740[label="GT",fontsize=16,color="green",shape="box"];741[label="EQ",fontsize=16,color="green",shape="box"];742[label="Succ yvy40000",fontsize=16,color="green",shape="box"];743[label="yvy3000",fontsize=16,color="green",shape="box"];744[label="LT",fontsize=16,color="green",shape="box"];745[label="EQ",fontsize=16,color="green",shape="box"];746 -> 598[label="",style="dashed", color="red", weight=0]; 746[label="primCmpNat (Succ yvy30000) Zero",fontsize=16,color="magenta"];746 -> 879[label="",style="dashed", color="magenta", weight=3]; 746 -> 880[label="",style="dashed", color="magenta", weight=3]; 747[label="EQ",fontsize=16,color="green",shape="box"];748[label="primMulInt yvy3000 yvy4001",fontsize=16,color="burlywood",shape="triangle"];4359[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];748 -> 4359[label="",style="solid", color="burlywood", weight=9]; 4359 -> 881[label="",style="solid", color="burlywood", weight=3]; 4360[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];748 -> 4360[label="",style="solid", color="burlywood", weight=9]; 4360 -> 882[label="",style="solid", color="burlywood", weight=3]; 749[label="yvy3001",fontsize=16,color="green",shape="box"];750[label="yvy4000",fontsize=16,color="green",shape="box"];751[label="Integer yvy30000 * yvy4001",fontsize=16,color="burlywood",shape="box"];4361[label="yvy4001/Integer yvy40010",fontsize=10,color="white",style="solid",shape="box"];751 -> 4361[label="",style="solid", color="burlywood", weight=9]; 4361 -> 883[label="",style="solid", color="burlywood", weight=3]; 752[label="yvy3001",fontsize=16,color="green",shape="box"];753[label="yvy4000",fontsize=16,color="green",shape="box"];754 -> 314[label="",style="dashed", color="red", weight=0]; 754[label="compare (yvy4000 * Pos yvy30010) (Pos yvy40010 * yvy3000)",fontsize=16,color="magenta"];754 -> 884[label="",style="dashed", color="magenta", weight=3]; 754 -> 885[label="",style="dashed", color="magenta", weight=3]; 755 -> 314[label="",style="dashed", color="red", weight=0]; 755[label="compare (yvy4000 * Pos yvy30010) (Neg yvy40010 * yvy3000)",fontsize=16,color="magenta"];755 -> 886[label="",style="dashed", color="magenta", weight=3]; 755 -> 887[label="",style="dashed", color="magenta", weight=3]; 756 -> 314[label="",style="dashed", color="red", weight=0]; 756[label="compare (yvy4000 * Neg yvy30010) (Pos yvy40010 * yvy3000)",fontsize=16,color="magenta"];756 -> 888[label="",style="dashed", color="magenta", weight=3]; 756 -> 889[label="",style="dashed", color="magenta", weight=3]; 757 -> 314[label="",style="dashed", color="red", weight=0]; 757[label="compare (yvy4000 * Neg yvy30010) (Neg yvy40010 * yvy3000)",fontsize=16,color="magenta"];757 -> 890[label="",style="dashed", color="magenta", weight=3]; 757 -> 891[label="",style="dashed", color="magenta", weight=3]; 1519[label="yvy3001",fontsize=16,color="green",shape="box"];1520[label="yvy4002",fontsize=16,color="green",shape="box"];1521[label="yvy4000",fontsize=16,color="green",shape="box"];1522[label="yvy3002",fontsize=16,color="green",shape="box"];1523[label="yvy4001",fontsize=16,color="green",shape="box"];1524 -> 1570[label="",style="dashed", color="red", weight=0]; 1524[label="yvy4000 == yvy3000 && yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];1524 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1524 -> 1572[label="",style="dashed", color="magenta", weight=3]; 1525[label="yvy3000",fontsize=16,color="green",shape="box"];1518[label="compare2 (yvy152,yvy153,yvy154) (yvy155,yvy156,yvy157) yvy178",fontsize=16,color="burlywood",shape="triangle"];4362[label="yvy178/False",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4362[label="",style="solid", color="burlywood", weight=9]; 4362 -> 1565[label="",style="solid", color="burlywood", weight=3]; 4363[label="yvy178/True",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4363[label="",style="solid", color="burlywood", weight=9]; 4363 -> 1566[label="",style="solid", color="burlywood", weight=3]; 766[label="EQ",fontsize=16,color="green",shape="box"];767[label="compare1 Nothing (Just yvy3000) (Nothing <= Just yvy3000)",fontsize=16,color="black",shape="box"];767 -> 908[label="",style="solid", color="black", weight=3]; 768[label="compare1 (Just yvy4000) Nothing (Just yvy4000 <= Nothing)",fontsize=16,color="black",shape="box"];768 -> 909[label="",style="solid", color="black", weight=3]; 770[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4364[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];770 -> 4364[label="",style="solid", color="blue", weight=9]; 4364 -> 910[label="",style="solid", color="blue", weight=3]; 4365[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];770 -> 4365[label="",style="solid", color="blue", weight=9]; 4365 -> 911[label="",style="solid", color="blue", weight=3]; 4366[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];770 -> 4366[label="",style="solid", color="blue", weight=9]; 4366 -> 912[label="",style="solid", color="blue", weight=3]; 4367[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];770 -> 4367[label="",style="solid", color="blue", weight=9]; 4367 -> 913[label="",style="solid", color="blue", weight=3]; 4368[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];770 -> 4368[label="",style="solid", color="blue", weight=9]; 4368 -> 914[label="",style="solid", color="blue", weight=3]; 4369[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];770 -> 4369[label="",style="solid", color="blue", weight=9]; 4369 -> 915[label="",style="solid", color="blue", weight=3]; 4370[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];770 -> 4370[label="",style="solid", color="blue", weight=9]; 4370 -> 916[label="",style="solid", color="blue", weight=3]; 4371[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];770 -> 4371[label="",style="solid", color="blue", weight=9]; 4371 -> 917[label="",style="solid", color="blue", weight=3]; 4372[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];770 -> 4372[label="",style="solid", color="blue", weight=9]; 4372 -> 918[label="",style="solid", color="blue", weight=3]; 4373[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];770 -> 4373[label="",style="solid", color="blue", weight=9]; 4373 -> 919[label="",style="solid", color="blue", weight=3]; 4374[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];770 -> 4374[label="",style="solid", color="blue", weight=9]; 4374 -> 920[label="",style="solid", color="blue", weight=3]; 4375[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];770 -> 4375[label="",style="solid", color="blue", weight=9]; 4375 -> 921[label="",style="solid", color="blue", weight=3]; 4376[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];770 -> 4376[label="",style="solid", color="blue", weight=9]; 4376 -> 922[label="",style="solid", color="blue", weight=3]; 4377[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];770 -> 4377[label="",style="solid", color="blue", weight=9]; 4377 -> 923[label="",style="solid", color="blue", weight=3]; 771[label="yvy4000",fontsize=16,color="green",shape="box"];772[label="yvy3000",fontsize=16,color="green",shape="box"];769[label="compare2 (Just yvy89) (Just yvy90) yvy91",fontsize=16,color="burlywood",shape="triangle"];4378[label="yvy91/False",fontsize=10,color="white",style="solid",shape="box"];769 -> 4378[label="",style="solid", color="burlywood", weight=9]; 4378 -> 924[label="",style="solid", color="burlywood", weight=3]; 4379[label="yvy91/True",fontsize=10,color="white",style="solid",shape="box"];769 -> 4379[label="",style="solid", color="burlywood", weight=9]; 4379 -> 925[label="",style="solid", color="burlywood", weight=3]; 773[label="EQ",fontsize=16,color="green",shape="box"];774[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];774 -> 926[label="",style="solid", color="black", weight=3]; 775[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];775 -> 927[label="",style="solid", color="black", weight=3]; 776[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];776 -> 928[label="",style="solid", color="black", weight=3]; 777[label="EQ",fontsize=16,color="green",shape="box"];778[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];778 -> 929[label="",style="solid", color="black", weight=3]; 779[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];779 -> 930[label="",style="solid", color="black", weight=3]; 780[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];780 -> 931[label="",style="solid", color="black", weight=3]; 781[label="EQ",fontsize=16,color="green",shape="box"];782[label="primCmpNat (Succ yvy40000) (Succ yvy30000)",fontsize=16,color="black",shape="box"];782 -> 932[label="",style="solid", color="black", weight=3]; 783[label="primCmpNat (Succ yvy40000) Zero",fontsize=16,color="black",shape="box"];783 -> 933[label="",style="solid", color="black", weight=3]; 784[label="primCmpNat Zero (Succ yvy30000)",fontsize=16,color="black",shape="box"];784 -> 934[label="",style="solid", color="black", weight=3]; 785[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];785 -> 935[label="",style="solid", color="black", weight=3]; 786 -> 314[label="",style="dashed", color="red", weight=0]; 786[label="compare (yvy4000 * Pos yvy30010) (Pos yvy40010 * yvy3000)",fontsize=16,color="magenta"];786 -> 936[label="",style="dashed", color="magenta", weight=3]; 786 -> 937[label="",style="dashed", color="magenta", weight=3]; 787 -> 314[label="",style="dashed", color="red", weight=0]; 787[label="compare (yvy4000 * Pos yvy30010) (Neg yvy40010 * yvy3000)",fontsize=16,color="magenta"];787 -> 938[label="",style="dashed", color="magenta", weight=3]; 787 -> 939[label="",style="dashed", color="magenta", weight=3]; 788 -> 314[label="",style="dashed", color="red", weight=0]; 788[label="compare (yvy4000 * Neg yvy30010) (Pos yvy40010 * yvy3000)",fontsize=16,color="magenta"];788 -> 940[label="",style="dashed", color="magenta", weight=3]; 788 -> 941[label="",style="dashed", color="magenta", weight=3]; 789 -> 314[label="",style="dashed", color="red", weight=0]; 789[label="compare (yvy4000 * Neg yvy30010) (Neg yvy40010 * yvy3000)",fontsize=16,color="magenta"];789 -> 942[label="",style="dashed", color="magenta", weight=3]; 789 -> 943[label="",style="dashed", color="magenta", weight=3]; 791[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4380[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];791 -> 4380[label="",style="solid", color="blue", weight=9]; 4380 -> 944[label="",style="solid", color="blue", weight=3]; 4381[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];791 -> 4381[label="",style="solid", color="blue", weight=9]; 4381 -> 945[label="",style="solid", color="blue", weight=3]; 4382[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];791 -> 4382[label="",style="solid", color="blue", weight=9]; 4382 -> 946[label="",style="solid", color="blue", weight=3]; 4383[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];791 -> 4383[label="",style="solid", color="blue", weight=9]; 4383 -> 947[label="",style="solid", color="blue", weight=3]; 4384[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];791 -> 4384[label="",style="solid", color="blue", weight=9]; 4384 -> 948[label="",style="solid", color="blue", weight=3]; 4385[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];791 -> 4385[label="",style="solid", color="blue", weight=9]; 4385 -> 949[label="",style="solid", color="blue", weight=3]; 4386[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];791 -> 4386[label="",style="solid", color="blue", weight=9]; 4386 -> 950[label="",style="solid", color="blue", weight=3]; 4387[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];791 -> 4387[label="",style="solid", color="blue", weight=9]; 4387 -> 951[label="",style="solid", color="blue", weight=3]; 4388[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];791 -> 4388[label="",style="solid", color="blue", weight=9]; 4388 -> 952[label="",style="solid", color="blue", weight=3]; 4389[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];791 -> 4389[label="",style="solid", color="blue", weight=9]; 4389 -> 953[label="",style="solid", color="blue", weight=3]; 4390[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];791 -> 4390[label="",style="solid", color="blue", weight=9]; 4390 -> 954[label="",style="solid", color="blue", weight=3]; 4391[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];791 -> 4391[label="",style="solid", color="blue", weight=9]; 4391 -> 955[label="",style="solid", color="blue", weight=3]; 4392[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];791 -> 4392[label="",style="solid", color="blue", weight=9]; 4392 -> 956[label="",style="solid", color="blue", weight=3]; 4393[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];791 -> 4393[label="",style="solid", color="blue", weight=9]; 4393 -> 957[label="",style="solid", color="blue", weight=3]; 792[label="yvy4000",fontsize=16,color="green",shape="box"];793[label="yvy3000",fontsize=16,color="green",shape="box"];790[label="compare2 (Left yvy96) (Left yvy97) yvy98",fontsize=16,color="burlywood",shape="triangle"];4394[label="yvy98/False",fontsize=10,color="white",style="solid",shape="box"];790 -> 4394[label="",style="solid", color="burlywood", weight=9]; 4394 -> 958[label="",style="solid", color="burlywood", weight=3]; 4395[label="yvy98/True",fontsize=10,color="white",style="solid",shape="box"];790 -> 4395[label="",style="solid", color="burlywood", weight=9]; 4395 -> 959[label="",style="solid", color="burlywood", weight=3]; 794[label="compare1 (Left yvy4000) (Right yvy3000) (Left yvy4000 <= Right yvy3000)",fontsize=16,color="black",shape="box"];794 -> 960[label="",style="solid", color="black", weight=3]; 795[label="compare1 (Right yvy4000) (Left yvy3000) (Right yvy4000 <= Left yvy3000)",fontsize=16,color="black",shape="box"];795 -> 961[label="",style="solid", color="black", weight=3]; 797[label="yvy4000",fontsize=16,color="green",shape="box"];798[label="yvy3000",fontsize=16,color="green",shape="box"];799[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4396[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];799 -> 4396[label="",style="solid", color="blue", weight=9]; 4396 -> 962[label="",style="solid", color="blue", weight=3]; 4397[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];799 -> 4397[label="",style="solid", color="blue", weight=9]; 4397 -> 963[label="",style="solid", color="blue", weight=3]; 4398[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];799 -> 4398[label="",style="solid", color="blue", weight=9]; 4398 -> 964[label="",style="solid", color="blue", weight=3]; 4399[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];799 -> 4399[label="",style="solid", color="blue", weight=9]; 4399 -> 965[label="",style="solid", color="blue", weight=3]; 4400[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];799 -> 4400[label="",style="solid", color="blue", weight=9]; 4400 -> 966[label="",style="solid", color="blue", weight=3]; 4401[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];799 -> 4401[label="",style="solid", color="blue", weight=9]; 4401 -> 967[label="",style="solid", color="blue", weight=3]; 4402[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];799 -> 4402[label="",style="solid", color="blue", weight=9]; 4402 -> 968[label="",style="solid", color="blue", weight=3]; 4403[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];799 -> 4403[label="",style="solid", color="blue", weight=9]; 4403 -> 969[label="",style="solid", color="blue", weight=3]; 4404[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];799 -> 4404[label="",style="solid", color="blue", weight=9]; 4404 -> 970[label="",style="solid", color="blue", weight=3]; 4405[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];799 -> 4405[label="",style="solid", color="blue", weight=9]; 4405 -> 971[label="",style="solid", color="blue", weight=3]; 4406[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];799 -> 4406[label="",style="solid", color="blue", weight=9]; 4406 -> 972[label="",style="solid", color="blue", weight=3]; 4407[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];799 -> 4407[label="",style="solid", color="blue", weight=9]; 4407 -> 973[label="",style="solid", color="blue", weight=3]; 4408[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];799 -> 4408[label="",style="solid", color="blue", weight=9]; 4408 -> 974[label="",style="solid", color="blue", weight=3]; 4409[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];799 -> 4409[label="",style="solid", color="blue", weight=9]; 4409 -> 975[label="",style="solid", color="blue", weight=3]; 796[label="compare2 (Right yvy103) (Right yvy104) yvy105",fontsize=16,color="burlywood",shape="triangle"];4410[label="yvy105/False",fontsize=10,color="white",style="solid",shape="box"];796 -> 4410[label="",style="solid", color="burlywood", weight=9]; 4410 -> 976[label="",style="solid", color="burlywood", weight=3]; 4411[label="yvy105/True",fontsize=10,color="white",style="solid",shape="box"];796 -> 4411[label="",style="solid", color="burlywood", weight=9]; 4411 -> 977[label="",style="solid", color="burlywood", weight=3]; 1346[label="yvy4000",fontsize=16,color="green",shape="box"];1347 -> 1570[label="",style="dashed", color="red", weight=0]; 1347[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];1347 -> 1573[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1574[label="",style="dashed", color="magenta", weight=3]; 1348[label="yvy4001",fontsize=16,color="green",shape="box"];1349[label="yvy3000",fontsize=16,color="green",shape="box"];1350[label="yvy3001",fontsize=16,color="green",shape="box"];1345[label="compare2 (yvy165,yvy166) (yvy167,yvy168) yvy169",fontsize=16,color="burlywood",shape="triangle"];4412[label="yvy169/False",fontsize=10,color="white",style="solid",shape="box"];1345 -> 4412[label="",style="solid", color="burlywood", weight=9]; 4412 -> 1370[label="",style="solid", color="burlywood", weight=3]; 4413[label="yvy169/True",fontsize=10,color="white",style="solid",shape="box"];1345 -> 4413[label="",style="solid", color="burlywood", weight=9]; 4413 -> 1371[label="",style="solid", color="burlywood", weight=3]; 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"];2709[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];2710[label="Succ yvy6200",fontsize=16,color="green",shape="box"];1460[label="primMulNat yvy30000 yvy40010",fontsize=16,color="burlywood",shape="triangle"];4414[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];1460 -> 4414[label="",style="solid", color="burlywood", weight=9]; 4414 -> 1848[label="",style="solid", color="burlywood", weight=3]; 4415[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1460 -> 4415[label="",style="solid", color="burlywood", weight=9]; 4415 -> 1849[label="",style="solid", color="burlywood", weight=3]; 2711[label="primPlusNat (Succ yvy3070) (Succ yvy400100)",fontsize=16,color="black",shape="box"];2711 -> 3032[label="",style="solid", color="black", weight=3]; 2712[label="primPlusNat Zero (Succ yvy400100)",fontsize=16,color="black",shape="box"];2712 -> 3033[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"];4416[label="yvy128/False",fontsize=10,color="white",style="solid",shape="box"];1231 -> 4416[label="",style="solid", color="burlywood", weight=9]; 4416 -> 1237[label="",style="solid", color="burlywood", weight=3]; 4417[label="yvy128/True",fontsize=10,color="white",style="solid",shape="box"];1231 -> 4417[label="",style="solid", color="burlywood", weight=9]; 4417 -> 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"];4418[label="yvy132/False",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4418[label="",style="solid", color="burlywood", weight=9]; 4418 -> 1249[label="",style="solid", color="burlywood", weight=3]; 4419[label="yvy132/True",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4419[label="",style="solid", color="burlywood", weight=9]; 4419 -> 1250[label="",style="solid", color="burlywood", weight=3]; 2713[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];2714[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"];4420[label="yvy136/False",fontsize=10,color="white",style="solid",shape="box"];1257 -> 4420[label="",style="solid", color="burlywood", weight=9]; 4420 -> 1263[label="",style="solid", color="burlywood", weight=3]; 4421[label="yvy136/True",fontsize=10,color="white",style="solid",shape="box"];1257 -> 4421[label="",style="solid", color="burlywood", weight=9]; 4421 -> 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"];4422[label="yvy140/False",fontsize=10,color="white",style="solid",shape="box"];1271 -> 4422[label="",style="solid", color="burlywood", weight=9]; 4422 -> 1277[label="",style="solid", color="burlywood", weight=3]; 4423[label="yvy140/True",fontsize=10,color="white",style="solid",shape="box"];1271 -> 4423[label="",style="solid", color="burlywood", weight=9]; 4423 -> 1278[label="",style="solid", color="burlywood", weight=3]; 875[label="compare1 False True True",fontsize=16,color="black",shape="box"];875 -> 1027[label="",style="solid", color="black", weight=3]; 876[label="compare1 True False False",fontsize=16,color="black",shape="box"];876 -> 1028[label="",style="solid", color="black", weight=3]; 877[label="Succ yvy30000",fontsize=16,color="green",shape="box"];878[label="Zero",fontsize=16,color="green",shape="box"];879[label="Zero",fontsize=16,color="green",shape="box"];880[label="Succ yvy30000",fontsize=16,color="green",shape="box"];881[label="primMulInt (Pos yvy30000) yvy4001",fontsize=16,color="burlywood",shape="box"];4424[label="yvy4001/Pos yvy40010",fontsize=10,color="white",style="solid",shape="box"];881 -> 4424[label="",style="solid", color="burlywood", weight=9]; 4424 -> 1029[label="",style="solid", color="burlywood", weight=3]; 4425[label="yvy4001/Neg yvy40010",fontsize=10,color="white",style="solid",shape="box"];881 -> 4425[label="",style="solid", color="burlywood", weight=9]; 4425 -> 1030[label="",style="solid", color="burlywood", weight=3]; 882[label="primMulInt (Neg yvy30000) yvy4001",fontsize=16,color="burlywood",shape="box"];4426[label="yvy4001/Pos yvy40010",fontsize=10,color="white",style="solid",shape="box"];882 -> 4426[label="",style="solid", color="burlywood", weight=9]; 4426 -> 1031[label="",style="solid", color="burlywood", weight=3]; 4427[label="yvy4001/Neg yvy40010",fontsize=10,color="white",style="solid",shape="box"];882 -> 4427[label="",style="solid", color="burlywood", weight=9]; 4427 -> 1032[label="",style="solid", color="burlywood", weight=3]; 883[label="Integer yvy30000 * Integer yvy40010",fontsize=16,color="black",shape="box"];883 -> 1033[label="",style="solid", color="black", weight=3]; 884 -> 665[label="",style="dashed", color="red", weight=0]; 884[label="Pos yvy40010 * yvy3000",fontsize=16,color="magenta"];884 -> 1034[label="",style="dashed", color="magenta", weight=3]; 884 -> 1035[label="",style="dashed", color="magenta", weight=3]; 885 -> 665[label="",style="dashed", color="red", weight=0]; 885[label="yvy4000 * Pos yvy30010",fontsize=16,color="magenta"];885 -> 1036[label="",style="dashed", color="magenta", weight=3]; 885 -> 1037[label="",style="dashed", color="magenta", weight=3]; 886 -> 665[label="",style="dashed", color="red", weight=0]; 886[label="Neg yvy40010 * yvy3000",fontsize=16,color="magenta"];886 -> 1038[label="",style="dashed", color="magenta", weight=3]; 886 -> 1039[label="",style="dashed", color="magenta", weight=3]; 887 -> 665[label="",style="dashed", color="red", weight=0]; 887[label="yvy4000 * Pos yvy30010",fontsize=16,color="magenta"];887 -> 1040[label="",style="dashed", color="magenta", weight=3]; 887 -> 1041[label="",style="dashed", color="magenta", weight=3]; 888 -> 665[label="",style="dashed", color="red", weight=0]; 888[label="Pos yvy40010 * yvy3000",fontsize=16,color="magenta"];888 -> 1042[label="",style="dashed", color="magenta", weight=3]; 888 -> 1043[label="",style="dashed", color="magenta", weight=3]; 889 -> 665[label="",style="dashed", color="red", weight=0]; 889[label="yvy4000 * Neg yvy30010",fontsize=16,color="magenta"];889 -> 1044[label="",style="dashed", color="magenta", weight=3]; 889 -> 1045[label="",style="dashed", color="magenta", weight=3]; 890 -> 665[label="",style="dashed", color="red", weight=0]; 890[label="Neg yvy40010 * yvy3000",fontsize=16,color="magenta"];890 -> 1046[label="",style="dashed", color="magenta", weight=3]; 890 -> 1047[label="",style="dashed", color="magenta", weight=3]; 891 -> 665[label="",style="dashed", color="red", weight=0]; 891[label="yvy4000 * Neg yvy30010",fontsize=16,color="magenta"];891 -> 1048[label="",style="dashed", color="magenta", weight=3]; 891 -> 1049[label="",style="dashed", color="magenta", weight=3]; 1571 -> 1570[label="",style="dashed", color="red", weight=0]; 1571[label="yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];1571 -> 1589[label="",style="dashed", color="magenta", weight=3]; 1571 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1572[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4428[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4428[label="",style="solid", color="blue", weight=9]; 4428 -> 1591[label="",style="solid", color="blue", weight=3]; 4429[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4429[label="",style="solid", color="blue", weight=9]; 4429 -> 1592[label="",style="solid", color="blue", weight=3]; 4430[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4430[label="",style="solid", color="blue", weight=9]; 4430 -> 1593[label="",style="solid", color="blue", weight=3]; 4431[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4431[label="",style="solid", color="blue", weight=9]; 4431 -> 1594[label="",style="solid", color="blue", weight=3]; 4432[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4432[label="",style="solid", color="blue", weight=9]; 4432 -> 1595[label="",style="solid", color="blue", weight=3]; 4433[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4433[label="",style="solid", color="blue", weight=9]; 4433 -> 1596[label="",style="solid", color="blue", weight=3]; 4434[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4434[label="",style="solid", color="blue", weight=9]; 4434 -> 1597[label="",style="solid", color="blue", weight=3]; 4435[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4435[label="",style="solid", color="blue", weight=9]; 4435 -> 1598[label="",style="solid", color="blue", weight=3]; 4436[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4436[label="",style="solid", color="blue", weight=9]; 4436 -> 1599[label="",style="solid", color="blue", weight=3]; 4437[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4437[label="",style="solid", color="blue", weight=9]; 4437 -> 1600[label="",style="solid", color="blue", weight=3]; 4438[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4438[label="",style="solid", color="blue", weight=9]; 4438 -> 1601[label="",style="solid", color="blue", weight=3]; 4439[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4439[label="",style="solid", color="blue", weight=9]; 4439 -> 1602[label="",style="solid", color="blue", weight=3]; 4440[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4440[label="",style="solid", color="blue", weight=9]; 4440 -> 1603[label="",style="solid", color="blue", weight=3]; 4441[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4441[label="",style="solid", color="blue", weight=9]; 4441 -> 1604[label="",style="solid", color="blue", weight=3]; 1570[label="yvy183 && yvy184",fontsize=16,color="burlywood",shape="triangle"];4442[label="yvy183/False",fontsize=10,color="white",style="solid",shape="box"];1570 -> 4442[label="",style="solid", color="burlywood", weight=9]; 4442 -> 1605[label="",style="solid", color="burlywood", weight=3]; 4443[label="yvy183/True",fontsize=10,color="white",style="solid",shape="box"];1570 -> 4443[label="",style="solid", color="burlywood", weight=9]; 4443 -> 1606[label="",style="solid", color="burlywood", weight=3]; 1565[label="compare2 (yvy152,yvy153,yvy154) (yvy155,yvy156,yvy157) False",fontsize=16,color="black",shape="box"];1565 -> 1607[label="",style="solid", color="black", weight=3]; 1566[label="compare2 (yvy152,yvy153,yvy154) (yvy155,yvy156,yvy157) True",fontsize=16,color="black",shape="box"];1566 -> 1608[label="",style="solid", color="black", weight=3]; 908[label="compare1 Nothing (Just yvy3000) True",fontsize=16,color="black",shape="box"];908 -> 1072[label="",style="solid", color="black", weight=3]; 909[label="compare1 (Just yvy4000) Nothing False",fontsize=16,color="black",shape="box"];909 -> 1073[label="",style="solid", color="black", weight=3]; 910 -> 892[label="",style="dashed", color="red", weight=0]; 910[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];910 -> 1074[label="",style="dashed", color="magenta", weight=3]; 910 -> 1075[label="",style="dashed", color="magenta", weight=3]; 911 -> 893[label="",style="dashed", color="red", weight=0]; 911[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];911 -> 1076[label="",style="dashed", color="magenta", weight=3]; 911 -> 1077[label="",style="dashed", color="magenta", weight=3]; 912 -> 894[label="",style="dashed", color="red", weight=0]; 912[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];912 -> 1078[label="",style="dashed", color="magenta", weight=3]; 912 -> 1079[label="",style="dashed", color="magenta", weight=3]; 913 -> 895[label="",style="dashed", color="red", weight=0]; 913[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];913 -> 1080[label="",style="dashed", color="magenta", weight=3]; 913 -> 1081[label="",style="dashed", color="magenta", weight=3]; 914 -> 896[label="",style="dashed", color="red", weight=0]; 914[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];914 -> 1082[label="",style="dashed", color="magenta", weight=3]; 914 -> 1083[label="",style="dashed", color="magenta", weight=3]; 915 -> 897[label="",style="dashed", color="red", weight=0]; 915[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];915 -> 1084[label="",style="dashed", color="magenta", weight=3]; 915 -> 1085[label="",style="dashed", color="magenta", weight=3]; 916 -> 898[label="",style="dashed", color="red", weight=0]; 916[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];916 -> 1086[label="",style="dashed", color="magenta", weight=3]; 916 -> 1087[label="",style="dashed", color="magenta", weight=3]; 917 -> 899[label="",style="dashed", color="red", weight=0]; 917[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];917 -> 1088[label="",style="dashed", color="magenta", weight=3]; 917 -> 1089[label="",style="dashed", color="magenta", weight=3]; 918 -> 900[label="",style="dashed", color="red", weight=0]; 918[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];918 -> 1090[label="",style="dashed", color="magenta", weight=3]; 918 -> 1091[label="",style="dashed", color="magenta", weight=3]; 919 -> 901[label="",style="dashed", color="red", weight=0]; 919[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];919 -> 1092[label="",style="dashed", color="magenta", weight=3]; 919 -> 1093[label="",style="dashed", color="magenta", weight=3]; 920 -> 902[label="",style="dashed", color="red", weight=0]; 920[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];920 -> 1094[label="",style="dashed", color="magenta", weight=3]; 920 -> 1095[label="",style="dashed", color="magenta", weight=3]; 921 -> 903[label="",style="dashed", color="red", weight=0]; 921[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];921 -> 1096[label="",style="dashed", color="magenta", weight=3]; 921 -> 1097[label="",style="dashed", color="magenta", weight=3]; 922 -> 904[label="",style="dashed", color="red", weight=0]; 922[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];922 -> 1098[label="",style="dashed", color="magenta", weight=3]; 922 -> 1099[label="",style="dashed", color="magenta", weight=3]; 923 -> 905[label="",style="dashed", color="red", weight=0]; 923[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];923 -> 1100[label="",style="dashed", color="magenta", weight=3]; 923 -> 1101[label="",style="dashed", color="magenta", weight=3]; 924[label="compare2 (Just yvy89) (Just yvy90) False",fontsize=16,color="black",shape="box"];924 -> 1102[label="",style="solid", color="black", weight=3]; 925[label="compare2 (Just yvy89) (Just yvy90) True",fontsize=16,color="black",shape="box"];925 -> 1103[label="",style="solid", color="black", weight=3]; 926[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];926 -> 1104[label="",style="solid", color="black", weight=3]; 927[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];927 -> 1105[label="",style="solid", color="black", weight=3]; 928[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];928 -> 1106[label="",style="solid", color="black", weight=3]; 929[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];929 -> 1107[label="",style="solid", color="black", weight=3]; 930[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];930 -> 1108[label="",style="solid", color="black", weight=3]; 931[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];931 -> 1109[label="",style="solid", color="black", weight=3]; 932 -> 598[label="",style="dashed", color="red", weight=0]; 932[label="primCmpNat yvy40000 yvy30000",fontsize=16,color="magenta"];932 -> 1110[label="",style="dashed", color="magenta", weight=3]; 932 -> 1111[label="",style="dashed", color="magenta", weight=3]; 933[label="GT",fontsize=16,color="green",shape="box"];934[label="LT",fontsize=16,color="green",shape="box"];935[label="EQ",fontsize=16,color="green",shape="box"];936 -> 665[label="",style="dashed", color="red", weight=0]; 936[label="Pos yvy40010 * yvy3000",fontsize=16,color="magenta"];936 -> 1112[label="",style="dashed", color="magenta", weight=3]; 936 -> 1113[label="",style="dashed", color="magenta", weight=3]; 937 -> 665[label="",style="dashed", color="red", weight=0]; 937[label="yvy4000 * Pos yvy30010",fontsize=16,color="magenta"];937 -> 1114[label="",style="dashed", color="magenta", weight=3]; 937 -> 1115[label="",style="dashed", color="magenta", weight=3]; 938 -> 665[label="",style="dashed", color="red", weight=0]; 938[label="Neg yvy40010 * yvy3000",fontsize=16,color="magenta"];938 -> 1116[label="",style="dashed", color="magenta", weight=3]; 938 -> 1117[label="",style="dashed", color="magenta", weight=3]; 939 -> 665[label="",style="dashed", color="red", weight=0]; 939[label="yvy4000 * Pos yvy30010",fontsize=16,color="magenta"];939 -> 1118[label="",style="dashed", color="magenta", weight=3]; 939 -> 1119[label="",style="dashed", color="magenta", weight=3]; 940 -> 665[label="",style="dashed", color="red", weight=0]; 940[label="Pos yvy40010 * yvy3000",fontsize=16,color="magenta"];940 -> 1120[label="",style="dashed", color="magenta", weight=3]; 940 -> 1121[label="",style="dashed", color="magenta", weight=3]; 941 -> 665[label="",style="dashed", color="red", weight=0]; 941[label="yvy4000 * Neg yvy30010",fontsize=16,color="magenta"];941 -> 1122[label="",style="dashed", color="magenta", weight=3]; 941 -> 1123[label="",style="dashed", color="magenta", weight=3]; 942 -> 665[label="",style="dashed", color="red", weight=0]; 942[label="Neg yvy40010 * yvy3000",fontsize=16,color="magenta"];942 -> 1124[label="",style="dashed", color="magenta", weight=3]; 942 -> 1125[label="",style="dashed", color="magenta", weight=3]; 943 -> 665[label="",style="dashed", color="red", weight=0]; 943[label="yvy4000 * Neg yvy30010",fontsize=16,color="magenta"];943 -> 1126[label="",style="dashed", color="magenta", weight=3]; 943 -> 1127[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 -> 1128[label="",style="dashed", color="magenta", weight=3]; 944 -> 1129[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 -> 1130[label="",style="dashed", color="magenta", weight=3]; 945 -> 1131[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 -> 1132[label="",style="dashed", color="magenta", weight=3]; 946 -> 1133[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 -> 1134[label="",style="dashed", color="magenta", weight=3]; 947 -> 1135[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 -> 1136[label="",style="dashed", color="magenta", weight=3]; 948 -> 1137[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 -> 1138[label="",style="dashed", color="magenta", weight=3]; 949 -> 1139[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 -> 1140[label="",style="dashed", color="magenta", weight=3]; 950 -> 1141[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 -> 1142[label="",style="dashed", color="magenta", weight=3]; 951 -> 1143[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 -> 1144[label="",style="dashed", color="magenta", weight=3]; 952 -> 1145[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 -> 1146[label="",style="dashed", color="magenta", weight=3]; 953 -> 1147[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 -> 1148[label="",style="dashed", color="magenta", weight=3]; 954 -> 1149[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 -> 1150[label="",style="dashed", color="magenta", weight=3]; 955 -> 1151[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 -> 1152[label="",style="dashed", color="magenta", weight=3]; 956 -> 1153[label="",style="dashed", color="magenta", weight=3]; 957 -> 905[label="",style="dashed", color="red", weight=0]; 957[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];957 -> 1154[label="",style="dashed", color="magenta", weight=3]; 957 -> 1155[label="",style="dashed", color="magenta", weight=3]; 958[label="compare2 (Left yvy96) (Left yvy97) False",fontsize=16,color="black",shape="box"];958 -> 1156[label="",style="solid", color="black", weight=3]; 959[label="compare2 (Left yvy96) (Left yvy97) True",fontsize=16,color="black",shape="box"];959 -> 1157[label="",style="solid", color="black", weight=3]; 960[label="compare1 (Left yvy4000) (Right yvy3000) True",fontsize=16,color="black",shape="box"];960 -> 1158[label="",style="solid", color="black", weight=3]; 961[label="compare1 (Right yvy4000) (Left yvy3000) False",fontsize=16,color="black",shape="box"];961 -> 1159[label="",style="solid", color="black", weight=3]; 962 -> 892[label="",style="dashed", color="red", weight=0]; 962[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];962 -> 1160[label="",style="dashed", color="magenta", weight=3]; 962 -> 1161[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 -> 1162[label="",style="dashed", color="magenta", weight=3]; 963 -> 1163[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 -> 1164[label="",style="dashed", color="magenta", weight=3]; 964 -> 1165[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 -> 1166[label="",style="dashed", color="magenta", weight=3]; 965 -> 1167[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 -> 1168[label="",style="dashed", color="magenta", weight=3]; 966 -> 1169[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 -> 1170[label="",style="dashed", color="magenta", weight=3]; 967 -> 1171[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 -> 1172[label="",style="dashed", color="magenta", weight=3]; 968 -> 1173[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 -> 1174[label="",style="dashed", color="magenta", weight=3]; 969 -> 1175[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 -> 1176[label="",style="dashed", color="magenta", weight=3]; 970 -> 1177[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 -> 1178[label="",style="dashed", color="magenta", weight=3]; 971 -> 1179[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 -> 1180[label="",style="dashed", color="magenta", weight=3]; 972 -> 1181[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 -> 1182[label="",style="dashed", color="magenta", weight=3]; 973 -> 1183[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 -> 1184[label="",style="dashed", color="magenta", weight=3]; 974 -> 1185[label="",style="dashed", color="magenta", weight=3]; 975 -> 905[label="",style="dashed", color="red", weight=0]; 975[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];975 -> 1186[label="",style="dashed", color="magenta", weight=3]; 975 -> 1187[label="",style="dashed", color="magenta", weight=3]; 976[label="compare2 (Right yvy103) (Right yvy104) False",fontsize=16,color="black",shape="box"];976 -> 1188[label="",style="solid", color="black", weight=3]; 977[label="compare2 (Right yvy103) (Right yvy104) True",fontsize=16,color="black",shape="box"];977 -> 1189[label="",style="solid", color="black", weight=3]; 1573[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4444[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4444[label="",style="solid", color="blue", weight=9]; 4444 -> 1609[label="",style="solid", color="blue", weight=3]; 4445[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4445[label="",style="solid", color="blue", weight=9]; 4445 -> 1610[label="",style="solid", color="blue", weight=3]; 4446[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4446[label="",style="solid", color="blue", weight=9]; 4446 -> 1611[label="",style="solid", color="blue", weight=3]; 4447[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4447[label="",style="solid", color="blue", weight=9]; 4447 -> 1612[label="",style="solid", color="blue", weight=3]; 4448[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4448[label="",style="solid", color="blue", weight=9]; 4448 -> 1613[label="",style="solid", color="blue", weight=3]; 4449[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4449[label="",style="solid", color="blue", weight=9]; 4449 -> 1614[label="",style="solid", color="blue", weight=3]; 4450[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4450[label="",style="solid", color="blue", weight=9]; 4450 -> 1615[label="",style="solid", color="blue", weight=3]; 4451[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4451[label="",style="solid", color="blue", weight=9]; 4451 -> 1616[label="",style="solid", color="blue", weight=3]; 4452[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4452[label="",style="solid", color="blue", weight=9]; 4452 -> 1617[label="",style="solid", color="blue", weight=3]; 4453[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4453[label="",style="solid", color="blue", weight=9]; 4453 -> 1618[label="",style="solid", color="blue", weight=3]; 4454[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4454[label="",style="solid", color="blue", weight=9]; 4454 -> 1619[label="",style="solid", color="blue", weight=3]; 4455[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4455[label="",style="solid", color="blue", weight=9]; 4455 -> 1620[label="",style="solid", color="blue", weight=3]; 4456[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4456[label="",style="solid", color="blue", weight=9]; 4456 -> 1621[label="",style="solid", color="blue", weight=3]; 4457[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4457[label="",style="solid", color="blue", weight=9]; 4457 -> 1622[label="",style="solid", color="blue", weight=3]; 1574[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4458[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4458[label="",style="solid", color="blue", weight=9]; 4458 -> 1623[label="",style="solid", color="blue", weight=3]; 4459[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4459[label="",style="solid", color="blue", weight=9]; 4459 -> 1624[label="",style="solid", color="blue", weight=3]; 4460[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4460[label="",style="solid", color="blue", weight=9]; 4460 -> 1625[label="",style="solid", color="blue", weight=3]; 4461[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4461[label="",style="solid", color="blue", weight=9]; 4461 -> 1626[label="",style="solid", color="blue", weight=3]; 4462[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4462[label="",style="solid", color="blue", weight=9]; 4462 -> 1627[label="",style="solid", color="blue", weight=3]; 4463[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4463[label="",style="solid", color="blue", weight=9]; 4463 -> 1628[label="",style="solid", color="blue", weight=3]; 4464[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4464[label="",style="solid", color="blue", weight=9]; 4464 -> 1629[label="",style="solid", color="blue", weight=3]; 4465[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4465[label="",style="solid", color="blue", weight=9]; 4465 -> 1630[label="",style="solid", color="blue", weight=3]; 4466[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4466[label="",style="solid", color="blue", weight=9]; 4466 -> 1631[label="",style="solid", color="blue", weight=3]; 4467[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4467[label="",style="solid", color="blue", weight=9]; 4467 -> 1632[label="",style="solid", color="blue", weight=3]; 4468[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4468[label="",style="solid", color="blue", weight=9]; 4468 -> 1633[label="",style="solid", color="blue", weight=3]; 4469[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4469[label="",style="solid", color="blue", weight=9]; 4469 -> 1634[label="",style="solid", color="blue", weight=3]; 4470[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4470[label="",style="solid", color="blue", weight=9]; 4470 -> 1635[label="",style="solid", color="blue", weight=3]; 4471[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4471[label="",style="solid", color="blue", weight=9]; 4471 -> 1636[label="",style="solid", color="blue", weight=3]; 1370[label="compare2 (yvy165,yvy166) (yvy167,yvy168) False",fontsize=16,color="black",shape="box"];1370 -> 1397[label="",style="solid", color="black", weight=3]; 1371[label="compare2 (yvy165,yvy166) (yvy167,yvy168) True",fontsize=16,color="black",shape="box"];1371 -> 1398[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"];1848[label="primMulNat (Succ yvy300000) yvy40010",fontsize=16,color="burlywood",shape="box"];4472[label="yvy40010/Succ yvy400100",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4472[label="",style="solid", color="burlywood", weight=9]; 4472 -> 2049[label="",style="solid", color="burlywood", weight=3]; 4473[label="yvy40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4473[label="",style="solid", color="burlywood", weight=9]; 4473 -> 2050[label="",style="solid", color="burlywood", weight=3]; 1849[label="primMulNat Zero yvy40010",fontsize=16,color="burlywood",shape="box"];4474[label="yvy40010/Succ yvy400100",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4474[label="",style="solid", color="burlywood", weight=9]; 4474 -> 2051[label="",style="solid", color="burlywood", weight=3]; 4475[label="yvy40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4475[label="",style="solid", color="burlywood", weight=9]; 4475 -> 2052[label="",style="solid", color="burlywood", weight=3]; 3032[label="Succ (Succ (primPlusNat yvy3070 yvy400100))",fontsize=16,color="green",shape="box"];3032 -> 3043[label="",style="dashed", color="green", weight=3]; 3033[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 -> 665[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 -> 665[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 -> 665[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 -> 665[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 -> 1334[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 -> 1335[label="",style="solid", color="black", weight=3]; 1027[label="LT",fontsize=16,color="green",shape="box"];1028[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];1028 -> 1284[label="",style="solid", color="black", weight=3]; 1029[label="primMulInt (Pos yvy30000) (Pos yvy40010)",fontsize=16,color="black",shape="box"];1029 -> 1285[label="",style="solid", color="black", weight=3]; 1030[label="primMulInt (Pos yvy30000) (Neg yvy40010)",fontsize=16,color="black",shape="box"];1030 -> 1286[label="",style="solid", color="black", weight=3]; 1031[label="primMulInt (Neg yvy30000) (Pos yvy40010)",fontsize=16,color="black",shape="box"];1031 -> 1287[label="",style="solid", color="black", weight=3]; 1032[label="primMulInt (Neg yvy30000) (Neg yvy40010)",fontsize=16,color="black",shape="box"];1032 -> 1288[label="",style="solid", color="black", weight=3]; 1033[label="Integer (primMulInt yvy30000 yvy40010)",fontsize=16,color="green",shape="box"];1033 -> 1289[label="",style="dashed", color="green", weight=3]; 1034[label="yvy3000",fontsize=16,color="green",shape="box"];1035[label="Pos yvy40010",fontsize=16,color="green",shape="box"];1036[label="Pos yvy30010",fontsize=16,color="green",shape="box"];1037[label="yvy4000",fontsize=16,color="green",shape="box"];1038[label="yvy3000",fontsize=16,color="green",shape="box"];1039[label="Neg yvy40010",fontsize=16,color="green",shape="box"];1040[label="Pos yvy30010",fontsize=16,color="green",shape="box"];1041[label="yvy4000",fontsize=16,color="green",shape="box"];1042[label="yvy3000",fontsize=16,color="green",shape="box"];1043[label="Pos yvy40010",fontsize=16,color="green",shape="box"];1044[label="Neg yvy30010",fontsize=16,color="green",shape="box"];1045[label="yvy4000",fontsize=16,color="green",shape="box"];1046[label="yvy3000",fontsize=16,color="green",shape="box"];1047[label="Neg yvy40010",fontsize=16,color="green",shape="box"];1048[label="Neg yvy30010",fontsize=16,color="green",shape="box"];1049[label="yvy4000",fontsize=16,color="green",shape="box"];1589[label="yvy4002 == yvy3002",fontsize=16,color="blue",shape="box"];4476[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4476[label="",style="solid", color="blue", weight=9]; 4476 -> 1646[label="",style="solid", color="blue", weight=3]; 4477[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4477[label="",style="solid", color="blue", weight=9]; 4477 -> 1647[label="",style="solid", color="blue", weight=3]; 4478[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4478[label="",style="solid", color="blue", weight=9]; 4478 -> 1648[label="",style="solid", color="blue", weight=3]; 4479[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4479[label="",style="solid", color="blue", weight=9]; 4479 -> 1649[label="",style="solid", color="blue", weight=3]; 4480[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4480[label="",style="solid", color="blue", weight=9]; 4480 -> 1650[label="",style="solid", color="blue", weight=3]; 4481[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4481[label="",style="solid", color="blue", weight=9]; 4481 -> 1651[label="",style="solid", color="blue", weight=3]; 4482[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4482[label="",style="solid", color="blue", weight=9]; 4482 -> 1652[label="",style="solid", color="blue", weight=3]; 4483[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4483[label="",style="solid", color="blue", weight=9]; 4483 -> 1653[label="",style="solid", color="blue", weight=3]; 4484[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4484[label="",style="solid", color="blue", weight=9]; 4484 -> 1654[label="",style="solid", color="blue", weight=3]; 4485[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4485[label="",style="solid", color="blue", weight=9]; 4485 -> 1655[label="",style="solid", color="blue", weight=3]; 4486[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4486[label="",style="solid", color="blue", weight=9]; 4486 -> 1656[label="",style="solid", color="blue", weight=3]; 4487[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4487[label="",style="solid", color="blue", weight=9]; 4487 -> 1657[label="",style="solid", color="blue", weight=3]; 4488[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4488[label="",style="solid", color="blue", weight=9]; 4488 -> 1658[label="",style="solid", color="blue", weight=3]; 4489[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4489[label="",style="solid", color="blue", weight=9]; 4489 -> 1659[label="",style="solid", color="blue", weight=3]; 1590[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4490[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4490[label="",style="solid", color="blue", weight=9]; 4490 -> 1660[label="",style="solid", color="blue", weight=3]; 4491[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4491[label="",style="solid", color="blue", weight=9]; 4491 -> 1661[label="",style="solid", color="blue", weight=3]; 4492[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4492[label="",style="solid", color="blue", weight=9]; 4492 -> 1662[label="",style="solid", color="blue", weight=3]; 4493[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4493[label="",style="solid", color="blue", weight=9]; 4493 -> 1663[label="",style="solid", color="blue", weight=3]; 4494[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4494[label="",style="solid", color="blue", weight=9]; 4494 -> 1664[label="",style="solid", color="blue", weight=3]; 4495[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4495[label="",style="solid", color="blue", weight=9]; 4495 -> 1665[label="",style="solid", color="blue", weight=3]; 4496[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4496[label="",style="solid", color="blue", weight=9]; 4496 -> 1666[label="",style="solid", color="blue", weight=3]; 4497[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4497[label="",style="solid", color="blue", weight=9]; 4497 -> 1667[label="",style="solid", color="blue", weight=3]; 4498[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4498[label="",style="solid", color="blue", weight=9]; 4498 -> 1668[label="",style="solid", color="blue", weight=3]; 4499[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4499[label="",style="solid", color="blue", weight=9]; 4499 -> 1669[label="",style="solid", color="blue", weight=3]; 4500[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4500[label="",style="solid", color="blue", weight=9]; 4500 -> 1670[label="",style="solid", color="blue", weight=3]; 4501[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4501[label="",style="solid", color="blue", weight=9]; 4501 -> 1671[label="",style="solid", color="blue", weight=3]; 4502[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4502[label="",style="solid", color="blue", weight=9]; 4502 -> 1672[label="",style="solid", color="blue", weight=3]; 4503[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4503[label="",style="solid", color="blue", weight=9]; 4503 -> 1673[label="",style="solid", color="blue", weight=3]; 1591 -> 892[label="",style="dashed", color="red", weight=0]; 1591[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1592 -> 893[label="",style="dashed", color="red", weight=0]; 1592[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1593 -> 894[label="",style="dashed", color="red", weight=0]; 1593[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1594 -> 895[label="",style="dashed", color="red", weight=0]; 1594[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1595 -> 896[label="",style="dashed", color="red", weight=0]; 1595[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1596 -> 897[label="",style="dashed", color="red", weight=0]; 1596[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1597 -> 898[label="",style="dashed", color="red", weight=0]; 1597[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1598 -> 899[label="",style="dashed", color="red", weight=0]; 1598[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1599 -> 900[label="",style="dashed", color="red", weight=0]; 1599[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1600 -> 901[label="",style="dashed", color="red", weight=0]; 1600[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1601 -> 902[label="",style="dashed", color="red", weight=0]; 1601[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1602 -> 903[label="",style="dashed", color="red", weight=0]; 1602[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1603 -> 904[label="",style="dashed", color="red", weight=0]; 1603[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1604 -> 905[label="",style="dashed", color="red", weight=0]; 1604[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1605[label="False && yvy184",fontsize=16,color="black",shape="box"];1605 -> 1674[label="",style="solid", color="black", weight=3]; 1606[label="True && yvy184",fontsize=16,color="black",shape="box"];1606 -> 1675[label="",style="solid", color="black", weight=3]; 1607[label="compare1 (yvy152,yvy153,yvy154) (yvy155,yvy156,yvy157) ((yvy152,yvy153,yvy154) <= (yvy155,yvy156,yvy157))",fontsize=16,color="black",shape="box"];1607 -> 1676[label="",style="solid", color="black", weight=3]; 1608[label="EQ",fontsize=16,color="green",shape="box"];1072[label="LT",fontsize=16,color="green",shape="box"];1073[label="compare0 (Just yvy4000) Nothing otherwise",fontsize=16,color="black",shape="box"];1073 -> 1336[label="",style="solid", color="black", weight=3]; 1074[label="yvy3000",fontsize=16,color="green",shape="box"];1075[label="yvy4000",fontsize=16,color="green",shape="box"];892[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4504[label="yvy4000/yvy40000 : yvy40001",fontsize=10,color="white",style="solid",shape="box"];892 -> 4504[label="",style="solid", color="burlywood", weight=9]; 4504 -> 1050[label="",style="solid", color="burlywood", weight=3]; 4505[label="yvy4000/[]",fontsize=10,color="white",style="solid",shape="box"];892 -> 4505[label="",style="solid", color="burlywood", weight=9]; 4505 -> 1051[label="",style="solid", color="burlywood", weight=3]; 1076[label="yvy3000",fontsize=16,color="green",shape="box"];1077[label="yvy4000",fontsize=16,color="green",shape="box"];893[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4506[label="yvy4000/(yvy40000,yvy40001,yvy40002)",fontsize=10,color="white",style="solid",shape="box"];893 -> 4506[label="",style="solid", color="burlywood", weight=9]; 4506 -> 1052[label="",style="solid", color="burlywood", weight=3]; 1078[label="yvy3000",fontsize=16,color="green",shape="box"];1079[label="yvy4000",fontsize=16,color="green",shape="box"];894[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4507[label="yvy4000/False",fontsize=10,color="white",style="solid",shape="box"];894 -> 4507[label="",style="solid", color="burlywood", weight=9]; 4507 -> 1053[label="",style="solid", color="burlywood", weight=3]; 4508[label="yvy4000/True",fontsize=10,color="white",style="solid",shape="box"];894 -> 4508[label="",style="solid", color="burlywood", weight=9]; 4508 -> 1054[label="",style="solid", color="burlywood", weight=3]; 1080[label="yvy3000",fontsize=16,color="green",shape="box"];1081[label="yvy4000",fontsize=16,color="green",shape="box"];895[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4509[label="yvy4000/(yvy40000,yvy40001)",fontsize=10,color="white",style="solid",shape="box"];895 -> 4509[label="",style="solid", color="burlywood", weight=9]; 4509 -> 1055[label="",style="solid", color="burlywood", weight=3]; 1082[label="yvy3000",fontsize=16,color="green",shape="box"];1083[label="yvy4000",fontsize=16,color="green",shape="box"];896[label="yvy4000 == yvy3000",fontsize=16,color="black",shape="triangle"];896 -> 1056[label="",style="solid", color="black", weight=3]; 1084[label="yvy3000",fontsize=16,color="green",shape="box"];1085[label="yvy4000",fontsize=16,color="green",shape="box"];897[label="yvy4000 == yvy3000",fontsize=16,color="black",shape="triangle"];897 -> 1057[label="",style="solid", color="black", weight=3]; 1086[label="yvy3000",fontsize=16,color="green",shape="box"];1087[label="yvy4000",fontsize=16,color="green",shape="box"];898[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4510[label="yvy4000/Left yvy40000",fontsize=10,color="white",style="solid",shape="box"];898 -> 4510[label="",style="solid", color="burlywood", weight=9]; 4510 -> 1058[label="",style="solid", color="burlywood", weight=3]; 4511[label="yvy4000/Right yvy40000",fontsize=10,color="white",style="solid",shape="box"];898 -> 4511[label="",style="solid", color="burlywood", weight=9]; 4511 -> 1059[label="",style="solid", color="burlywood", weight=3]; 1088[label="yvy3000",fontsize=16,color="green",shape="box"];1089[label="yvy4000",fontsize=16,color="green",shape="box"];899[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4512[label="yvy4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];899 -> 4512[label="",style="solid", color="burlywood", weight=9]; 4512 -> 1060[label="",style="solid", color="burlywood", weight=3]; 4513[label="yvy4000/Just yvy40000",fontsize=10,color="white",style="solid",shape="box"];899 -> 4513[label="",style="solid", color="burlywood", weight=9]; 4513 -> 1061[label="",style="solid", color="burlywood", weight=3]; 1090[label="yvy3000",fontsize=16,color="green",shape="box"];1091[label="yvy4000",fontsize=16,color="green",shape="box"];900[label="yvy4000 == yvy3000",fontsize=16,color="black",shape="triangle"];900 -> 1062[label="",style="solid", color="black", weight=3]; 1092[label="yvy3000",fontsize=16,color="green",shape="box"];1093[label="yvy4000",fontsize=16,color="green",shape="box"];901[label="yvy4000 == yvy3000",fontsize=16,color="black",shape="triangle"];901 -> 1063[label="",style="solid", color="black", weight=3]; 1094[label="yvy3000",fontsize=16,color="green",shape="box"];1095[label="yvy4000",fontsize=16,color="green",shape="box"];902[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4514[label="yvy4000/LT",fontsize=10,color="white",style="solid",shape="box"];902 -> 4514[label="",style="solid", color="burlywood", weight=9]; 4514 -> 1064[label="",style="solid", color="burlywood", weight=3]; 4515[label="yvy4000/EQ",fontsize=10,color="white",style="solid",shape="box"];902 -> 4515[label="",style="solid", color="burlywood", weight=9]; 4515 -> 1065[label="",style="solid", color="burlywood", weight=3]; 4516[label="yvy4000/GT",fontsize=10,color="white",style="solid",shape="box"];902 -> 4516[label="",style="solid", color="burlywood", weight=9]; 4516 -> 1066[label="",style="solid", color="burlywood", weight=3]; 1096[label="yvy3000",fontsize=16,color="green",shape="box"];1097[label="yvy4000",fontsize=16,color="green",shape="box"];903[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4517[label="yvy4000/yvy40000 :% yvy40001",fontsize=10,color="white",style="solid",shape="box"];903 -> 4517[label="",style="solid", color="burlywood", weight=9]; 4517 -> 1067[label="",style="solid", color="burlywood", weight=3]; 1098[label="yvy3000",fontsize=16,color="green",shape="box"];1099[label="yvy4000",fontsize=16,color="green",shape="box"];904[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4518[label="yvy4000/()",fontsize=10,color="white",style="solid",shape="box"];904 -> 4518[label="",style="solid", color="burlywood", weight=9]; 4518 -> 1068[label="",style="solid", color="burlywood", weight=3]; 1100[label="yvy3000",fontsize=16,color="green",shape="box"];1101[label="yvy4000",fontsize=16,color="green",shape="box"];905[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4519[label="yvy4000/Integer yvy40000",fontsize=10,color="white",style="solid",shape="box"];905 -> 4519[label="",style="solid", color="burlywood", weight=9]; 4519 -> 1069[label="",style="solid", color="burlywood", weight=3]; 1102 -> 1639[label="",style="dashed", color="red", weight=0]; 1102[label="compare1 (Just yvy89) (Just yvy90) (Just yvy89 <= Just yvy90)",fontsize=16,color="magenta"];1102 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1102 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1102 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1103[label="EQ",fontsize=16,color="green",shape="box"];1104[label="LT",fontsize=16,color="green",shape="box"];1105[label="LT",fontsize=16,color="green",shape="box"];1106[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];1106 -> 1338[label="",style="solid", color="black", weight=3]; 1107[label="LT",fontsize=16,color="green",shape="box"];1108[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];1108 -> 1339[label="",style="solid", color="black", weight=3]; 1109[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];1109 -> 1340[label="",style="solid", color="black", weight=3]; 1110[label="yvy30000",fontsize=16,color="green",shape="box"];1111[label="yvy40000",fontsize=16,color="green",shape="box"];1112[label="yvy3000",fontsize=16,color="green",shape="box"];1113[label="Pos yvy40010",fontsize=16,color="green",shape="box"];1114[label="Pos yvy30010",fontsize=16,color="green",shape="box"];1115[label="yvy4000",fontsize=16,color="green",shape="box"];1116[label="yvy3000",fontsize=16,color="green",shape="box"];1117[label="Neg yvy40010",fontsize=16,color="green",shape="box"];1118[label="Pos yvy30010",fontsize=16,color="green",shape="box"];1119[label="yvy4000",fontsize=16,color="green",shape="box"];1120[label="yvy3000",fontsize=16,color="green",shape="box"];1121[label="Pos yvy40010",fontsize=16,color="green",shape="box"];1122[label="Neg yvy30010",fontsize=16,color="green",shape="box"];1123[label="yvy4000",fontsize=16,color="green",shape="box"];1124[label="yvy3000",fontsize=16,color="green",shape="box"];1125[label="Neg yvy40010",fontsize=16,color="green",shape="box"];1126[label="Neg yvy30010",fontsize=16,color="green",shape="box"];1127[label="yvy4000",fontsize=16,color="green",shape="box"];1128[label="yvy3000",fontsize=16,color="green",shape="box"];1129[label="yvy4000",fontsize=16,color="green",shape="box"];1130[label="yvy3000",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 -> 1739[label="",style="dashed", color="red", weight=0]; 1156[label="compare1 (Left yvy96) (Left yvy97) (Left yvy96 <= Left yvy97)",fontsize=16,color="magenta"];1156 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1156 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1156 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1157[label="EQ",fontsize=16,color="green",shape="box"];1158[label="LT",fontsize=16,color="green",shape="box"];1159[label="compare0 (Right yvy4000) (Left yvy3000) otherwise",fontsize=16,color="black",shape="box"];1159 -> 1342[label="",style="solid", color="black", weight=3]; 1160[label="yvy3000",fontsize=16,color="green",shape="box"];1161[label="yvy4000",fontsize=16,color="green",shape="box"];1162[label="yvy3000",fontsize=16,color="green",shape="box"];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 -> 1808[label="",style="dashed", color="red", weight=0]; 1188[label="compare1 (Right yvy103) (Right yvy104) (Right yvy103 <= Right yvy104)",fontsize=16,color="magenta"];1188 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1188 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1188 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1189[label="EQ",fontsize=16,color="green",shape="box"];1609 -> 892[label="",style="dashed", color="red", weight=0]; 1609[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1609 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1609 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1610 -> 893[label="",style="dashed", color="red", weight=0]; 1610[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1610 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1610 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1611 -> 894[label="",style="dashed", color="red", weight=0]; 1611[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1611 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1611 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1612 -> 895[label="",style="dashed", color="red", weight=0]; 1612[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1612 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1612 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1613 -> 896[label="",style="dashed", color="red", weight=0]; 1613[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1613 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1613 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1614 -> 897[label="",style="dashed", color="red", weight=0]; 1614[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1614 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1614 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1615 -> 898[label="",style="dashed", color="red", weight=0]; 1615[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1615 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1615 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1616 -> 899[label="",style="dashed", color="red", weight=0]; 1616[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1616 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1616 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1617 -> 900[label="",style="dashed", color="red", weight=0]; 1617[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1617 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1617 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1618 -> 901[label="",style="dashed", color="red", weight=0]; 1618[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1618 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1618 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1619 -> 902[label="",style="dashed", color="red", weight=0]; 1619[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1619 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1619 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1620 -> 903[label="",style="dashed", color="red", weight=0]; 1620[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1620 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1620 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1621 -> 904[label="",style="dashed", color="red", weight=0]; 1621[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1621 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1621 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1622 -> 905[label="",style="dashed", color="red", weight=0]; 1622[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1622 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1622 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1623 -> 892[label="",style="dashed", color="red", weight=0]; 1623[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1623 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1623 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1624 -> 893[label="",style="dashed", color="red", weight=0]; 1624[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1624 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1624 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1625 -> 894[label="",style="dashed", color="red", weight=0]; 1625[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1625 -> 1709[label="",style="dashed", color="magenta", weight=3]; 1625 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1626 -> 895[label="",style="dashed", color="red", weight=0]; 1626[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1626 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1626 -> 1712[label="",style="dashed", color="magenta", weight=3]; 1627 -> 896[label="",style="dashed", color="red", weight=0]; 1627[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1627 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1627 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1628 -> 897[label="",style="dashed", color="red", weight=0]; 1628[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1628 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1628 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1629 -> 898[label="",style="dashed", color="red", weight=0]; 1629[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1629 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1629 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1630 -> 899[label="",style="dashed", color="red", weight=0]; 1630[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1630 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1630 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1631 -> 900[label="",style="dashed", color="red", weight=0]; 1631[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1631 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1631 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1632 -> 901[label="",style="dashed", color="red", weight=0]; 1632[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1632 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1632 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1633 -> 902[label="",style="dashed", color="red", weight=0]; 1633[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1633 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1633 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1634 -> 903[label="",style="dashed", color="red", weight=0]; 1634[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1634 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1634 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1635 -> 904[label="",style="dashed", color="red", weight=0]; 1635[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1635 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1635 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1636 -> 905[label="",style="dashed", color="red", weight=0]; 1636[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1636 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1636 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1397[label="compare1 (yvy165,yvy166) (yvy167,yvy168) ((yvy165,yvy166) <= (yvy167,yvy168))",fontsize=16,color="black",shape="box"];1397 -> 1637[label="",style="solid", color="black", weight=3]; 1398[label="EQ",fontsize=16,color="green",shape="box"];1220[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 True",fontsize=16,color="black",shape="box"];1220 -> 1388[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 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1222 -> 1390[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 -> 1391[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"];4520[label="yvy118/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1225 -> 4520[label="",style="solid", color="burlywood", weight=9]; 4520 -> 1392[label="",style="solid", color="burlywood", weight=3]; 4521[label="yvy118/FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184",fontsize=10,color="white",style="solid",shape="box"];1225 -> 4521[label="",style="solid", color="burlywood", weight=9]; 4521 -> 1393[label="",style="solid", color="burlywood", weight=3]; 1226 -> 3997[label="",style="dashed", color="red", weight=0]; 1226[label="FiniteMap.mkBranch (Pos (Succ Zero)) yvy50 yvy51 yvy118 yvy54",fontsize=16,color="magenta"];1226 -> 3998[label="",style="dashed", color="magenta", weight=3]; 1226 -> 3999[label="",style="dashed", color="magenta", weight=3]; 1226 -> 4000[label="",style="dashed", color="magenta", weight=3]; 1226 -> 4001[label="",style="dashed", color="magenta", weight=3]; 1226 -> 4002[label="",style="dashed", color="magenta", weight=3]; 1227 -> 1977[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 -> 1978[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"];2049[label="primMulNat (Succ yvy300000) (Succ yvy400100)",fontsize=16,color="black",shape="box"];2049 -> 2314[label="",style="solid", color="black", weight=3]; 2050[label="primMulNat (Succ yvy300000) Zero",fontsize=16,color="black",shape="box"];2050 -> 2315[label="",style="solid", color="black", weight=3]; 2051[label="primMulNat Zero (Succ yvy400100)",fontsize=16,color="black",shape="box"];2051 -> 2316[label="",style="solid", color="black", weight=3]; 2052[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2052 -> 2317[label="",style="solid", color="black", weight=3]; 3043[label="primPlusNat yvy3070 yvy400100",fontsize=16,color="burlywood",shape="triangle"];4522[label="yvy3070/Succ yvy30700",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4522[label="",style="solid", color="burlywood", weight=9]; 4522 -> 3181[label="",style="solid", color="burlywood", weight=3]; 4523[label="yvy3070/Zero",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4523[label="",style="solid", color="burlywood", weight=9]; 4523 -> 3182[label="",style="solid", color="burlywood", weight=3]; 1239 -> 546[label="",style="dashed", color="red", weight=0]; 1239[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];1240[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1240 -> 1430[label="",style="solid", color="black", weight=3]; 1241 -> 902[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 -> 1431[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1432[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 -> 1433[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 -> 1434[label="",style="dashed", color="magenta", weight=3]; 1252 -> 1435[label="",style="dashed", color="magenta", weight=3]; 1252 -> 1436[label="",style="dashed", color="magenta", weight=3]; 1252 -> 1437[label="",style="dashed", color="magenta", weight=3]; 1253 -> 551[label="",style="dashed", color="red", weight=0]; 1253[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64",fontsize=16,color="magenta"];1254 -> 1240[label="",style="dashed", color="red", weight=0]; 1254[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1255 -> 902[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 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1255 -> 1439[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 -> 1440[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 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1266 -> 1442[label="",style="dashed", color="magenta", weight=3]; 1266 -> 1443[label="",style="dashed", color="magenta", weight=3]; 1266 -> 1444[label="",style="dashed", color="magenta", weight=3]; 1267 -> 556[label="",style="dashed", color="red", weight=0]; 1267[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];1268 -> 1240[label="",style="dashed", color="red", weight=0]; 1268[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1269 -> 902[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 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1269 -> 1446[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 -> 1447[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 -> 1448[label="",style="dashed", color="magenta", weight=3]; 1280 -> 1449[label="",style="dashed", color="magenta", weight=3]; 1280 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1280 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1281 -> 561[label="",style="dashed", color="red", weight=0]; 1281[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64",fontsize=16,color="magenta"];1282 -> 1240[label="",style="dashed", color="red", weight=0]; 1282[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1283 -> 902[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 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1283 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1334[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"];1334 -> 1454[label="",style="solid", color="black", weight=3]; 1335 -> 833[label="",style="dashed", color="red", weight=0]; 1335[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];1335 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1458[label="",style="dashed", color="magenta", weight=3]; 1284[label="compare0 True False True",fontsize=16,color="black",shape="box"];1284 -> 1459[label="",style="solid", color="black", weight=3]; 1285[label="Pos (primMulNat yvy30000 yvy40010)",fontsize=16,color="green",shape="box"];1285 -> 1460[label="",style="dashed", color="green", weight=3]; 1286[label="Neg (primMulNat yvy30000 yvy40010)",fontsize=16,color="green",shape="box"];1286 -> 1461[label="",style="dashed", color="green", weight=3]; 1287[label="Neg (primMulNat yvy30000 yvy40010)",fontsize=16,color="green",shape="box"];1287 -> 1462[label="",style="dashed", color="green", weight=3]; 1288[label="Pos (primMulNat yvy30000 yvy40010)",fontsize=16,color="green",shape="box"];1288 -> 1463[label="",style="dashed", color="green", weight=3]; 1289 -> 748[label="",style="dashed", color="red", weight=0]; 1289[label="primMulInt yvy30000 yvy40010",fontsize=16,color="magenta"];1289 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1289 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1646 -> 892[label="",style="dashed", color="red", weight=0]; 1646[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1646 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1646 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1647 -> 893[label="",style="dashed", color="red", weight=0]; 1647[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1647 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1647 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1648 -> 894[label="",style="dashed", color="red", weight=0]; 1648[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1648 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1648 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1649 -> 895[label="",style="dashed", color="red", weight=0]; 1649[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1649 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1649 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1650 -> 896[label="",style="dashed", color="red", weight=0]; 1650[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1650 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1650 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1651 -> 897[label="",style="dashed", color="red", weight=0]; 1651[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1651 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1651 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1652 -> 898[label="",style="dashed", color="red", weight=0]; 1652[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1652 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1652 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1653 -> 899[label="",style="dashed", color="red", weight=0]; 1653[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1653 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1653 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1654 -> 900[label="",style="dashed", color="red", weight=0]; 1654[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1654 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1655 -> 901[label="",style="dashed", color="red", weight=0]; 1655[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1655 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1655 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1656 -> 902[label="",style="dashed", color="red", weight=0]; 1656[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1656 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1656 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1657 -> 903[label="",style="dashed", color="red", weight=0]; 1657[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1657 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1657 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1658 -> 904[label="",style="dashed", color="red", weight=0]; 1658[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1658 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1658 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1659 -> 905[label="",style="dashed", color="red", weight=0]; 1659[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1659 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1659 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1660 -> 892[label="",style="dashed", color="red", weight=0]; 1660[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1660 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1660 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1661 -> 893[label="",style="dashed", color="red", weight=0]; 1661[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1661 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1661 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1662 -> 894[label="",style="dashed", color="red", weight=0]; 1662[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1662 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1662 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1663 -> 895[label="",style="dashed", color="red", weight=0]; 1663[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1663 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1663 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1664 -> 896[label="",style="dashed", color="red", weight=0]; 1664[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1664 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1664 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1665 -> 897[label="",style="dashed", color="red", weight=0]; 1665[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1665 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1665 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1666 -> 898[label="",style="dashed", color="red", weight=0]; 1666[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1666 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1666 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1667 -> 899[label="",style="dashed", color="red", weight=0]; 1667[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1667 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1667 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1668 -> 900[label="",style="dashed", color="red", weight=0]; 1668[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1668 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1668 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1669 -> 901[label="",style="dashed", color="red", weight=0]; 1669[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1669 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1669 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1670 -> 902[label="",style="dashed", color="red", weight=0]; 1670[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1670 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1670 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1671 -> 903[label="",style="dashed", color="red", weight=0]; 1671[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1671 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1671 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1672 -> 904[label="",style="dashed", color="red", weight=0]; 1672[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1672 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1672 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1673 -> 905[label="",style="dashed", color="red", weight=0]; 1673[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1673 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1673 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1674[label="False",fontsize=16,color="green",shape="box"];1675[label="yvy184",fontsize=16,color="green",shape="box"];1676 -> 1856[label="",style="dashed", color="red", weight=0]; 1676[label="compare1 (yvy152,yvy153,yvy154) (yvy155,yvy156,yvy157) (yvy152 < yvy155 || yvy152 == yvy155 && (yvy153 < yvy156 || yvy153 == yvy156 && yvy154 <= yvy157))",fontsize=16,color="magenta"];1676 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1676 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1676 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1676 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1676 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1676 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1676 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1676 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1336[label="compare0 (Just yvy4000) Nothing True",fontsize=16,color="black",shape="box"];1336 -> 1638[label="",style="solid", color="black", weight=3]; 1050[label="yvy40000 : yvy40001 == yvy3000",fontsize=16,color="burlywood",shape="box"];4524[label="yvy3000/yvy30000 : yvy30001",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4524[label="",style="solid", color="burlywood", weight=9]; 4524 -> 1290[label="",style="solid", color="burlywood", weight=3]; 4525[label="yvy3000/[]",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4525[label="",style="solid", color="burlywood", weight=9]; 4525 -> 1291[label="",style="solid", color="burlywood", weight=3]; 1051[label="[] == yvy3000",fontsize=16,color="burlywood",shape="box"];4526[label="yvy3000/yvy30000 : yvy30001",fontsize=10,color="white",style="solid",shape="box"];1051 -> 4526[label="",style="solid", color="burlywood", weight=9]; 4526 -> 1292[label="",style="solid", color="burlywood", weight=3]; 4527[label="yvy3000/[]",fontsize=10,color="white",style="solid",shape="box"];1051 -> 4527[label="",style="solid", color="burlywood", weight=9]; 4527 -> 1293[label="",style="solid", color="burlywood", weight=3]; 1052[label="(yvy40000,yvy40001,yvy40002) == yvy3000",fontsize=16,color="burlywood",shape="box"];4528[label="yvy3000/(yvy30000,yvy30001,yvy30002)",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4528[label="",style="solid", color="burlywood", weight=9]; 4528 -> 1294[label="",style="solid", color="burlywood", weight=3]; 1053[label="False == yvy3000",fontsize=16,color="burlywood",shape="box"];4529[label="yvy3000/False",fontsize=10,color="white",style="solid",shape="box"];1053 -> 4529[label="",style="solid", color="burlywood", weight=9]; 4529 -> 1295[label="",style="solid", color="burlywood", weight=3]; 4530[label="yvy3000/True",fontsize=10,color="white",style="solid",shape="box"];1053 -> 4530[label="",style="solid", color="burlywood", weight=9]; 4530 -> 1296[label="",style="solid", color="burlywood", weight=3]; 1054[label="True == yvy3000",fontsize=16,color="burlywood",shape="box"];4531[label="yvy3000/False",fontsize=10,color="white",style="solid",shape="box"];1054 -> 4531[label="",style="solid", color="burlywood", weight=9]; 4531 -> 1297[label="",style="solid", color="burlywood", weight=3]; 4532[label="yvy3000/True",fontsize=10,color="white",style="solid",shape="box"];1054 -> 4532[label="",style="solid", color="burlywood", weight=9]; 4532 -> 1298[label="",style="solid", color="burlywood", weight=3]; 1055[label="(yvy40000,yvy40001) == yvy3000",fontsize=16,color="burlywood",shape="box"];4533[label="yvy3000/(yvy30000,yvy30001)",fontsize=10,color="white",style="solid",shape="box"];1055 -> 4533[label="",style="solid", color="burlywood", weight=9]; 4533 -> 1299[label="",style="solid", color="burlywood", weight=3]; 1056[label="primEqDouble yvy4000 yvy3000",fontsize=16,color="burlywood",shape="box"];4534[label="yvy4000/Double yvy40000 yvy40001",fontsize=10,color="white",style="solid",shape="box"];1056 -> 4534[label="",style="solid", color="burlywood", weight=9]; 4534 -> 1300[label="",style="solid", color="burlywood", weight=3]; 1057[label="primEqChar yvy4000 yvy3000",fontsize=16,color="burlywood",shape="box"];4535[label="yvy4000/Char yvy40000",fontsize=10,color="white",style="solid",shape="box"];1057 -> 4535[label="",style="solid", color="burlywood", weight=9]; 4535 -> 1301[label="",style="solid", color="burlywood", weight=3]; 1058[label="Left yvy40000 == yvy3000",fontsize=16,color="burlywood",shape="box"];4536[label="yvy3000/Left yvy30000",fontsize=10,color="white",style="solid",shape="box"];1058 -> 4536[label="",style="solid", color="burlywood", weight=9]; 4536 -> 1302[label="",style="solid", color="burlywood", weight=3]; 4537[label="yvy3000/Right yvy30000",fontsize=10,color="white",style="solid",shape="box"];1058 -> 4537[label="",style="solid", color="burlywood", weight=9]; 4537 -> 1303[label="",style="solid", color="burlywood", weight=3]; 1059[label="Right yvy40000 == yvy3000",fontsize=16,color="burlywood",shape="box"];4538[label="yvy3000/Left yvy30000",fontsize=10,color="white",style="solid",shape="box"];1059 -> 4538[label="",style="solid", color="burlywood", weight=9]; 4538 -> 1304[label="",style="solid", color="burlywood", weight=3]; 4539[label="yvy3000/Right yvy30000",fontsize=10,color="white",style="solid",shape="box"];1059 -> 4539[label="",style="solid", color="burlywood", weight=9]; 4539 -> 1305[label="",style="solid", color="burlywood", weight=3]; 1060[label="Nothing == yvy3000",fontsize=16,color="burlywood",shape="box"];4540[label="yvy3000/Nothing",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4540[label="",style="solid", color="burlywood", weight=9]; 4540 -> 1306[label="",style="solid", color="burlywood", weight=3]; 4541[label="yvy3000/Just yvy30000",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4541[label="",style="solid", color="burlywood", weight=9]; 4541 -> 1307[label="",style="solid", color="burlywood", weight=3]; 1061[label="Just yvy40000 == yvy3000",fontsize=16,color="burlywood",shape="box"];4542[label="yvy3000/Nothing",fontsize=10,color="white",style="solid",shape="box"];1061 -> 4542[label="",style="solid", color="burlywood", weight=9]; 4542 -> 1308[label="",style="solid", color="burlywood", weight=3]; 4543[label="yvy3000/Just yvy30000",fontsize=10,color="white",style="solid",shape="box"];1061 -> 4543[label="",style="solid", color="burlywood", weight=9]; 4543 -> 1309[label="",style="solid", color="burlywood", weight=3]; 1062[label="primEqFloat yvy4000 yvy3000",fontsize=16,color="burlywood",shape="box"];4544[label="yvy4000/Float yvy40000 yvy40001",fontsize=10,color="white",style="solid",shape="box"];1062 -> 4544[label="",style="solid", color="burlywood", weight=9]; 4544 -> 1310[label="",style="solid", color="burlywood", weight=3]; 1063[label="primEqInt yvy4000 yvy3000",fontsize=16,color="burlywood",shape="triangle"];4545[label="yvy4000/Pos yvy40000",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4545[label="",style="solid", color="burlywood", weight=9]; 4545 -> 1311[label="",style="solid", color="burlywood", weight=3]; 4546[label="yvy4000/Neg yvy40000",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4546[label="",style="solid", color="burlywood", weight=9]; 4546 -> 1312[label="",style="solid", color="burlywood", weight=3]; 1064[label="LT == yvy3000",fontsize=16,color="burlywood",shape="box"];4547[label="yvy3000/LT",fontsize=10,color="white",style="solid",shape="box"];1064 -> 4547[label="",style="solid", color="burlywood", weight=9]; 4547 -> 1313[label="",style="solid", color="burlywood", weight=3]; 4548[label="yvy3000/EQ",fontsize=10,color="white",style="solid",shape="box"];1064 -> 4548[label="",style="solid", color="burlywood", weight=9]; 4548 -> 1314[label="",style="solid", color="burlywood", weight=3]; 4549[label="yvy3000/GT",fontsize=10,color="white",style="solid",shape="box"];1064 -> 4549[label="",style="solid", color="burlywood", weight=9]; 4549 -> 1315[label="",style="solid", color="burlywood", weight=3]; 1065[label="EQ == yvy3000",fontsize=16,color="burlywood",shape="box"];4550[label="yvy3000/LT",fontsize=10,color="white",style="solid",shape="box"];1065 -> 4550[label="",style="solid", color="burlywood", weight=9]; 4550 -> 1316[label="",style="solid", color="burlywood", weight=3]; 4551[label="yvy3000/EQ",fontsize=10,color="white",style="solid",shape="box"];1065 -> 4551[label="",style="solid", color="burlywood", weight=9]; 4551 -> 1317[label="",style="solid", color="burlywood", weight=3]; 4552[label="yvy3000/GT",fontsize=10,color="white",style="solid",shape="box"];1065 -> 4552[label="",style="solid", color="burlywood", weight=9]; 4552 -> 1318[label="",style="solid", color="burlywood", weight=3]; 1066[label="GT == yvy3000",fontsize=16,color="burlywood",shape="box"];4553[label="yvy3000/LT",fontsize=10,color="white",style="solid",shape="box"];1066 -> 4553[label="",style="solid", color="burlywood", weight=9]; 4553 -> 1319[label="",style="solid", color="burlywood", weight=3]; 4554[label="yvy3000/EQ",fontsize=10,color="white",style="solid",shape="box"];1066 -> 4554[label="",style="solid", color="burlywood", weight=9]; 4554 -> 1320[label="",style="solid", color="burlywood", weight=3]; 4555[label="yvy3000/GT",fontsize=10,color="white",style="solid",shape="box"];1066 -> 4555[label="",style="solid", color="burlywood", weight=9]; 4555 -> 1321[label="",style="solid", color="burlywood", weight=3]; 1067[label="yvy40000 :% yvy40001 == yvy3000",fontsize=16,color="burlywood",shape="box"];4556[label="yvy3000/yvy30000 :% yvy30001",fontsize=10,color="white",style="solid",shape="box"];1067 -> 4556[label="",style="solid", color="burlywood", weight=9]; 4556 -> 1322[label="",style="solid", color="burlywood", weight=3]; 1068[label="() == yvy3000",fontsize=16,color="burlywood",shape="box"];4557[label="yvy3000/()",fontsize=10,color="white",style="solid",shape="box"];1068 -> 4557[label="",style="solid", color="burlywood", weight=9]; 4557 -> 1323[label="",style="solid", color="burlywood", weight=3]; 1069[label="Integer yvy40000 == yvy3000",fontsize=16,color="burlywood",shape="box"];4558[label="yvy3000/Integer yvy30000",fontsize=10,color="white",style="solid",shape="box"];1069 -> 4558[label="",style="solid", color="burlywood", weight=9]; 4558 -> 1324[label="",style="solid", color="burlywood", weight=3]; 1640[label="yvy90",fontsize=16,color="green",shape="box"];1641[label="Just yvy89 <= Just yvy90",fontsize=16,color="black",shape="box"];1641 -> 1733[label="",style="solid", color="black", weight=3]; 1642[label="yvy89",fontsize=16,color="green",shape="box"];1639[label="compare1 (Just yvy189) (Just yvy190) yvy191",fontsize=16,color="burlywood",shape="triangle"];4559[label="yvy191/False",fontsize=10,color="white",style="solid",shape="box"];1639 -> 4559[label="",style="solid", color="burlywood", weight=9]; 4559 -> 1734[label="",style="solid", color="burlywood", weight=3]; 4560[label="yvy191/True",fontsize=10,color="white",style="solid",shape="box"];1639 -> 4560[label="",style="solid", color="burlywood", weight=9]; 4560 -> 1735[label="",style="solid", color="burlywood", weight=3]; 1338[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];1338 -> 1736[label="",style="solid", color="black", weight=3]; 1339[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];1339 -> 1737[label="",style="solid", color="black", weight=3]; 1340[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];1340 -> 1738[label="",style="solid", color="black", weight=3]; 1740[label="Left yvy96 <= Left yvy97",fontsize=16,color="black",shape="box"];1740 -> 1804[label="",style="solid", color="black", weight=3]; 1741[label="yvy97",fontsize=16,color="green",shape="box"];1742[label="yvy96",fontsize=16,color="green",shape="box"];1739[label="compare1 (Left yvy196) (Left yvy197) yvy198",fontsize=16,color="burlywood",shape="triangle"];4561[label="yvy198/False",fontsize=10,color="white",style="solid",shape="box"];1739 -> 4561[label="",style="solid", color="burlywood", weight=9]; 4561 -> 1805[label="",style="solid", color="burlywood", weight=3]; 4562[label="yvy198/True",fontsize=10,color="white",style="solid",shape="box"];1739 -> 4562[label="",style="solid", color="burlywood", weight=9]; 4562 -> 1806[label="",style="solid", color="burlywood", weight=3]; 1342[label="compare0 (Right yvy4000) (Left yvy3000) True",fontsize=16,color="black",shape="box"];1342 -> 1807[label="",style="solid", color="black", weight=3]; 1809[label="Right yvy103 <= Right yvy104",fontsize=16,color="black",shape="box"];1809 -> 1815[label="",style="solid", color="black", weight=3]; 1810[label="yvy104",fontsize=16,color="green",shape="box"];1811[label="yvy103",fontsize=16,color="green",shape="box"];1808[label="compare1 (Right yvy205) (Right yvy206) yvy207",fontsize=16,color="burlywood",shape="triangle"];4563[label="yvy207/False",fontsize=10,color="white",style="solid",shape="box"];1808 -> 4563[label="",style="solid", color="burlywood", weight=9]; 4563 -> 1816[label="",style="solid", color="burlywood", weight=3]; 4564[label="yvy207/True",fontsize=10,color="white",style="solid",shape="box"];1808 -> 4564[label="",style="solid", color="burlywood", weight=9]; 4564 -> 1817[label="",style="solid", color="burlywood", weight=3]; 1677[label="yvy3001",fontsize=16,color="green",shape="box"];1678[label="yvy4001",fontsize=16,color="green",shape="box"];1679[label="yvy3001",fontsize=16,color="green",shape="box"];1680[label="yvy4001",fontsize=16,color="green",shape="box"];1681[label="yvy3001",fontsize=16,color="green",shape="box"];1682[label="yvy4001",fontsize=16,color="green",shape="box"];1683[label="yvy3001",fontsize=16,color="green",shape="box"];1684[label="yvy4001",fontsize=16,color="green",shape="box"];1685[label="yvy3001",fontsize=16,color="green",shape="box"];1686[label="yvy4001",fontsize=16,color="green",shape="box"];1687[label="yvy3001",fontsize=16,color="green",shape="box"];1688[label="yvy4001",fontsize=16,color="green",shape="box"];1689[label="yvy3001",fontsize=16,color="green",shape="box"];1690[label="yvy4001",fontsize=16,color="green",shape="box"];1691[label="yvy3001",fontsize=16,color="green",shape="box"];1692[label="yvy4001",fontsize=16,color="green",shape="box"];1693[label="yvy3001",fontsize=16,color="green",shape="box"];1694[label="yvy4001",fontsize=16,color="green",shape="box"];1695[label="yvy3001",fontsize=16,color="green",shape="box"];1696[label="yvy4001",fontsize=16,color="green",shape="box"];1697[label="yvy3001",fontsize=16,color="green",shape="box"];1698[label="yvy4001",fontsize=16,color="green",shape="box"];1699[label="yvy3001",fontsize=16,color="green",shape="box"];1700[label="yvy4001",fontsize=16,color="green",shape="box"];1701[label="yvy3001",fontsize=16,color="green",shape="box"];1702[label="yvy4001",fontsize=16,color="green",shape="box"];1703[label="yvy3001",fontsize=16,color="green",shape="box"];1704[label="yvy4001",fontsize=16,color="green",shape="box"];1705[label="yvy3000",fontsize=16,color="green",shape="box"];1706[label="yvy4000",fontsize=16,color="green",shape="box"];1707[label="yvy3000",fontsize=16,color="green",shape="box"];1708[label="yvy4000",fontsize=16,color="green",shape="box"];1709[label="yvy3000",fontsize=16,color="green",shape="box"];1710[label="yvy4000",fontsize=16,color="green",shape="box"];1711[label="yvy3000",fontsize=16,color="green",shape="box"];1712[label="yvy4000",fontsize=16,color="green",shape="box"];1713[label="yvy3000",fontsize=16,color="green",shape="box"];1714[label="yvy4000",fontsize=16,color="green",shape="box"];1715[label="yvy3000",fontsize=16,color="green",shape="box"];1716[label="yvy4000",fontsize=16,color="green",shape="box"];1717[label="yvy3000",fontsize=16,color="green",shape="box"];1718[label="yvy4000",fontsize=16,color="green",shape="box"];1719[label="yvy3000",fontsize=16,color="green",shape="box"];1720[label="yvy4000",fontsize=16,color="green",shape="box"];1721[label="yvy3000",fontsize=16,color="green",shape="box"];1722[label="yvy4000",fontsize=16,color="green",shape="box"];1723[label="yvy3000",fontsize=16,color="green",shape="box"];1724[label="yvy4000",fontsize=16,color="green",shape="box"];1725[label="yvy3000",fontsize=16,color="green",shape="box"];1726[label="yvy4000",fontsize=16,color="green",shape="box"];1727[label="yvy3000",fontsize=16,color="green",shape="box"];1728[label="yvy4000",fontsize=16,color="green",shape="box"];1729[label="yvy3000",fontsize=16,color="green",shape="box"];1730[label="yvy4000",fontsize=16,color="green",shape="box"];1731[label="yvy3000",fontsize=16,color="green",shape="box"];1732[label="yvy4000",fontsize=16,color="green",shape="box"];1637 -> 1941[label="",style="dashed", color="red", weight=0]; 1637[label="compare1 (yvy165,yvy166) (yvy167,yvy168) (yvy165 < yvy167 || yvy165 == yvy167 && yvy166 <= yvy168)",fontsize=16,color="magenta"];1637 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1637 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1637 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1637 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1637 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1637 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1388[label="FiniteMap.Branch (yvy400 : yvy401) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1388 -> 1820[label="",style="dashed", color="green", weight=3]; 1389[label="yvy400 : yvy401",fontsize=16,color="green",shape="box"];1390[label="yvy54",fontsize=16,color="green",shape="box"];1391[label="yvy41",fontsize=16,color="green",shape="box"];1392[label="primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 FiniteMap.EmptyFM yvy54)",fontsize=16,color="black",shape="box"];1392 -> 1821[label="",style="solid", color="black", weight=3]; 1393[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"];1393 -> 1822[label="",style="solid", color="black", weight=3]; 3998[label="yvy50",fontsize=16,color="green",shape="box"];3999[label="yvy118",fontsize=16,color="green",shape="box"];4000[label="yvy51",fontsize=16,color="green",shape="box"];4001[label="Zero",fontsize=16,color="green",shape="box"];4002[label="yvy54",fontsize=16,color="green",shape="box"];3997[label="FiniteMap.mkBranch (Pos (Succ yvy360)) yvy361 yvy362 yvy363 yvy364",fontsize=16,color="black",shape="triangle"];3997 -> 4093[label="",style="solid", color="black", weight=3]; 1978 -> 3036[label="",style="dashed", color="red", weight=0]; 1978[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54",fontsize=16,color="magenta"];1978 -> 3037[label="",style="dashed", color="magenta", weight=3]; 1978 -> 3038[label="",style="dashed", color="magenta", weight=3]; 1977[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 yvy239",fontsize=16,color="burlywood",shape="triangle"];4565[label="yvy239/False",fontsize=10,color="white",style="solid",shape="box"];1977 -> 4565[label="",style="solid", color="burlywood", weight=9]; 4565 -> 1983[label="",style="solid", color="burlywood", weight=3]; 4566[label="yvy239/True",fontsize=10,color="white",style="solid",shape="box"];1977 -> 4566[label="",style="solid", color="burlywood", weight=9]; 4566 -> 1984[label="",style="solid", color="burlywood", weight=3]; 2314 -> 2685[label="",style="dashed", color="red", weight=0]; 2314[label="primPlusNat (primMulNat yvy300000 (Succ yvy400100)) (Succ yvy400100)",fontsize=16,color="magenta"];2314 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2315[label="Zero",fontsize=16,color="green",shape="box"];2316[label="Zero",fontsize=16,color="green",shape="box"];2317[label="Zero",fontsize=16,color="green",shape="box"];3181[label="primPlusNat (Succ yvy30700) yvy400100",fontsize=16,color="burlywood",shape="box"];4567[label="yvy400100/Succ yvy4001000",fontsize=10,color="white",style="solid",shape="box"];3181 -> 4567[label="",style="solid", color="burlywood", weight=9]; 4567 -> 3248[label="",style="solid", color="burlywood", weight=3]; 4568[label="yvy400100/Zero",fontsize=10,color="white",style="solid",shape="box"];3181 -> 4568[label="",style="solid", color="burlywood", weight=9]; 4568 -> 3249[label="",style="solid", color="burlywood", weight=3]; 3182[label="primPlusNat Zero yvy400100",fontsize=16,color="burlywood",shape="box"];4569[label="yvy400100/Succ yvy4001000",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4569[label="",style="solid", color="burlywood", weight=9]; 4569 -> 3250[label="",style="solid", color="burlywood", weight=3]; 4570[label="yvy400100/Zero",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4570[label="",style="solid", color="burlywood", weight=9]; 4570 -> 3251[label="",style="solid", color="burlywood", weight=3]; 1430[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1431[label="LT",fontsize=16,color="green",shape="box"];1432 -> 314[label="",style="dashed", color="red", weight=0]; 1432[label="compare yvy130 (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];1432 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1433[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"];1433 -> 1830[label="",style="solid", color="black", weight=3]; 1434[label="yvy60",fontsize=16,color="green",shape="box"];1435 -> 12[label="",style="dashed", color="red", weight=0]; 1435[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1435 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1436[label="yvy63",fontsize=16,color="green",shape="box"];1437[label="yvy61",fontsize=16,color="green",shape="box"];1438[label="LT",fontsize=16,color="green",shape="box"];1439 -> 314[label="",style="dashed", color="red", weight=0]; 1439[label="compare yvy134 (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64)",fontsize=16,color="magenta"];1439 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1440[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"];1440 -> 1835[label="",style="solid", color="black", weight=3]; 1441[label="yvy60",fontsize=16,color="green",shape="box"];1442 -> 12[label="",style="dashed", color="red", weight=0]; 1442[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1442 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1443[label="yvy63",fontsize=16,color="green",shape="box"];1444[label="yvy61",fontsize=16,color="green",shape="box"];1445[label="LT",fontsize=16,color="green",shape="box"];1446 -> 314[label="",style="dashed", color="red", weight=0]; 1446[label="compare yvy138 (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];1446 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1446 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1447[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"];1447 -> 1840[label="",style="solid", color="black", weight=3]; 1448[label="yvy60",fontsize=16,color="green",shape="box"];1449 -> 12[label="",style="dashed", color="red", weight=0]; 1449[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1449 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1449 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1450[label="yvy63",fontsize=16,color="green",shape="box"];1451[label="yvy61",fontsize=16,color="green",shape="box"];1452[label="LT",fontsize=16,color="green",shape="box"];1453 -> 314[label="",style="dashed", color="red", weight=0]; 1453[label="compare yvy142 (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64)",fontsize=16,color="magenta"];1453 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1453 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1454[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"];1454 -> 1845[label="",style="solid", color="black", weight=3]; 1455[label="yvy60",fontsize=16,color="green",shape="box"];1456 -> 12[label="",style="dashed", color="red", weight=0]; 1456[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1456 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1456 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1457[label="yvy63",fontsize=16,color="green",shape="box"];1458[label="yvy61",fontsize=16,color="green",shape="box"];1459[label="GT",fontsize=16,color="green",shape="box"];1461 -> 1460[label="",style="dashed", color="red", weight=0]; 1461[label="primMulNat yvy30000 yvy40010",fontsize=16,color="magenta"];1461 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1462 -> 1460[label="",style="dashed", color="red", weight=0]; 1462[label="primMulNat yvy30000 yvy40010",fontsize=16,color="magenta"];1462 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1463 -> 1460[label="",style="dashed", color="red", weight=0]; 1463[label="primMulNat yvy30000 yvy40010",fontsize=16,color="magenta"];1463 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1463 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1464[label="yvy40010",fontsize=16,color="green",shape="box"];1465[label="yvy30000",fontsize=16,color="green",shape="box"];1746[label="yvy3002",fontsize=16,color="green",shape="box"];1747[label="yvy4002",fontsize=16,color="green",shape="box"];1748[label="yvy3002",fontsize=16,color="green",shape="box"];1749[label="yvy4002",fontsize=16,color="green",shape="box"];1750[label="yvy3002",fontsize=16,color="green",shape="box"];1751[label="yvy4002",fontsize=16,color="green",shape="box"];1752[label="yvy3002",fontsize=16,color="green",shape="box"];1753[label="yvy4002",fontsize=16,color="green",shape="box"];1754[label="yvy3002",fontsize=16,color="green",shape="box"];1755[label="yvy4002",fontsize=16,color="green",shape="box"];1756[label="yvy3002",fontsize=16,color="green",shape="box"];1757[label="yvy4002",fontsize=16,color="green",shape="box"];1758[label="yvy3002",fontsize=16,color="green",shape="box"];1759[label="yvy4002",fontsize=16,color="green",shape="box"];1760[label="yvy3002",fontsize=16,color="green",shape="box"];1761[label="yvy4002",fontsize=16,color="green",shape="box"];1762[label="yvy3002",fontsize=16,color="green",shape="box"];1763[label="yvy4002",fontsize=16,color="green",shape="box"];1764[label="yvy3002",fontsize=16,color="green",shape="box"];1765[label="yvy4002",fontsize=16,color="green",shape="box"];1766[label="yvy3002",fontsize=16,color="green",shape="box"];1767[label="yvy4002",fontsize=16,color="green",shape="box"];1768[label="yvy3002",fontsize=16,color="green",shape="box"];1769[label="yvy4002",fontsize=16,color="green",shape="box"];1770[label="yvy3002",fontsize=16,color="green",shape="box"];1771[label="yvy4002",fontsize=16,color="green",shape="box"];1772[label="yvy3002",fontsize=16,color="green",shape="box"];1773[label="yvy4002",fontsize=16,color="green",shape="box"];1774[label="yvy3001",fontsize=16,color="green",shape="box"];1775[label="yvy4001",fontsize=16,color="green",shape="box"];1776[label="yvy3001",fontsize=16,color="green",shape="box"];1777[label="yvy4001",fontsize=16,color="green",shape="box"];1778[label="yvy3001",fontsize=16,color="green",shape="box"];1779[label="yvy4001",fontsize=16,color="green",shape="box"];1780[label="yvy3001",fontsize=16,color="green",shape="box"];1781[label="yvy4001",fontsize=16,color="green",shape="box"];1782[label="yvy3001",fontsize=16,color="green",shape="box"];1783[label="yvy4001",fontsize=16,color="green",shape="box"];1784[label="yvy3001",fontsize=16,color="green",shape="box"];1785[label="yvy4001",fontsize=16,color="green",shape="box"];1786[label="yvy3001",fontsize=16,color="green",shape="box"];1787[label="yvy4001",fontsize=16,color="green",shape="box"];1788[label="yvy3001",fontsize=16,color="green",shape="box"];1789[label="yvy4001",fontsize=16,color="green",shape="box"];1790[label="yvy3001",fontsize=16,color="green",shape="box"];1791[label="yvy4001",fontsize=16,color="green",shape="box"];1792[label="yvy3001",fontsize=16,color="green",shape="box"];1793[label="yvy4001",fontsize=16,color="green",shape="box"];1794[label="yvy3001",fontsize=16,color="green",shape="box"];1795[label="yvy4001",fontsize=16,color="green",shape="box"];1796[label="yvy3001",fontsize=16,color="green",shape="box"];1797[label="yvy4001",fontsize=16,color="green",shape="box"];1798[label="yvy3001",fontsize=16,color="green",shape="box"];1799[label="yvy4001",fontsize=16,color="green",shape="box"];1800[label="yvy3001",fontsize=16,color="green",shape="box"];1801[label="yvy4001",fontsize=16,color="green",shape="box"];1857[label="yvy152",fontsize=16,color="green",shape="box"];1858[label="yvy152 < yvy155",fontsize=16,color="blue",shape="box"];4571[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4571[label="",style="solid", color="blue", weight=9]; 4571 -> 1873[label="",style="solid", color="blue", weight=3]; 4572[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4572[label="",style="solid", color="blue", weight=9]; 4572 -> 1874[label="",style="solid", color="blue", weight=3]; 4573[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4573[label="",style="solid", color="blue", weight=9]; 4573 -> 1875[label="",style="solid", color="blue", weight=3]; 4574[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4574[label="",style="solid", color="blue", weight=9]; 4574 -> 1876[label="",style="solid", color="blue", weight=3]; 4575[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4575[label="",style="solid", color="blue", weight=9]; 4575 -> 1877[label="",style="solid", color="blue", weight=3]; 4576[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4576[label="",style="solid", color="blue", weight=9]; 4576 -> 1878[label="",style="solid", color="blue", weight=3]; 4577[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4577[label="",style="solid", color="blue", weight=9]; 4577 -> 1879[label="",style="solid", color="blue", weight=3]; 4578[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4578[label="",style="solid", color="blue", weight=9]; 4578 -> 1880[label="",style="solid", color="blue", weight=3]; 4579[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4579[label="",style="solid", color="blue", weight=9]; 4579 -> 1881[label="",style="solid", color="blue", weight=3]; 4580[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4580[label="",style="solid", color="blue", weight=9]; 4580 -> 1882[label="",style="solid", color="blue", weight=3]; 4581[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4581[label="",style="solid", color="blue", weight=9]; 4581 -> 1883[label="",style="solid", color="blue", weight=3]; 4582[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4582[label="",style="solid", color="blue", weight=9]; 4582 -> 1884[label="",style="solid", color="blue", weight=3]; 4583[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4583[label="",style="solid", color="blue", weight=9]; 4583 -> 1885[label="",style="solid", color="blue", weight=3]; 4584[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4584[label="",style="solid", color="blue", weight=9]; 4584 -> 1886[label="",style="solid", color="blue", weight=3]; 1859[label="yvy153",fontsize=16,color="green",shape="box"];1860[label="yvy154",fontsize=16,color="green",shape="box"];1861[label="yvy157",fontsize=16,color="green",shape="box"];1862[label="yvy155",fontsize=16,color="green",shape="box"];1863 -> 1570[label="",style="dashed", color="red", weight=0]; 1863[label="yvy152 == yvy155 && (yvy153 < yvy156 || yvy153 == yvy156 && yvy154 <= yvy157)",fontsize=16,color="magenta"];1863 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1863 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1864[label="yvy156",fontsize=16,color="green",shape="box"];1856[label="compare1 (yvy218,yvy219,yvy220) (yvy221,yvy222,yvy223) (yvy224 || yvy225)",fontsize=16,color="burlywood",shape="triangle"];4585[label="yvy224/False",fontsize=10,color="white",style="solid",shape="box"];1856 -> 4585[label="",style="solid", color="burlywood", weight=9]; 4585 -> 1889[label="",style="solid", color="burlywood", weight=3]; 4586[label="yvy224/True",fontsize=10,color="white",style="solid",shape="box"];1856 -> 4586[label="",style="solid", color="burlywood", weight=9]; 4586 -> 1890[label="",style="solid", color="burlywood", weight=3]; 1638[label="GT",fontsize=16,color="green",shape="box"];1290[label="yvy40000 : yvy40001 == yvy30000 : yvy30001",fontsize=16,color="black",shape="box"];1290 -> 1466[label="",style="solid", color="black", weight=3]; 1291[label="yvy40000 : yvy40001 == []",fontsize=16,color="black",shape="box"];1291 -> 1467[label="",style="solid", color="black", weight=3]; 1292[label="[] == yvy30000 : yvy30001",fontsize=16,color="black",shape="box"];1292 -> 1468[label="",style="solid", color="black", weight=3]; 1293[label="[] == []",fontsize=16,color="black",shape="box"];1293 -> 1469[label="",style="solid", color="black", weight=3]; 1294[label="(yvy40000,yvy40001,yvy40002) == (yvy30000,yvy30001,yvy30002)",fontsize=16,color="black",shape="box"];1294 -> 1470[label="",style="solid", color="black", weight=3]; 1295[label="False == False",fontsize=16,color="black",shape="box"];1295 -> 1471[label="",style="solid", color="black", weight=3]; 1296[label="False == True",fontsize=16,color="black",shape="box"];1296 -> 1472[label="",style="solid", color="black", weight=3]; 1297[label="True == False",fontsize=16,color="black",shape="box"];1297 -> 1473[label="",style="solid", color="black", weight=3]; 1298[label="True == True",fontsize=16,color="black",shape="box"];1298 -> 1474[label="",style="solid", color="black", weight=3]; 1299[label="(yvy40000,yvy40001) == (yvy30000,yvy30001)",fontsize=16,color="black",shape="box"];1299 -> 1475[label="",style="solid", color="black", weight=3]; 1300[label="primEqDouble (Double yvy40000 yvy40001) yvy3000",fontsize=16,color="burlywood",shape="box"];4587[label="yvy3000/Double yvy30000 yvy30001",fontsize=10,color="white",style="solid",shape="box"];1300 -> 4587[label="",style="solid", color="burlywood", weight=9]; 4587 -> 1476[label="",style="solid", color="burlywood", weight=3]; 1301[label="primEqChar (Char yvy40000) yvy3000",fontsize=16,color="burlywood",shape="box"];4588[label="yvy3000/Char yvy30000",fontsize=10,color="white",style="solid",shape="box"];1301 -> 4588[label="",style="solid", color="burlywood", weight=9]; 4588 -> 1477[label="",style="solid", color="burlywood", weight=3]; 1302[label="Left yvy40000 == Left yvy30000",fontsize=16,color="black",shape="box"];1302 -> 1478[label="",style="solid", color="black", weight=3]; 1303[label="Left yvy40000 == Right yvy30000",fontsize=16,color="black",shape="box"];1303 -> 1479[label="",style="solid", color="black", weight=3]; 1304[label="Right yvy40000 == Left yvy30000",fontsize=16,color="black",shape="box"];1304 -> 1480[label="",style="solid", color="black", weight=3]; 1305[label="Right yvy40000 == Right yvy30000",fontsize=16,color="black",shape="box"];1305 -> 1481[label="",style="solid", color="black", weight=3]; 1306[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1306 -> 1482[label="",style="solid", color="black", weight=3]; 1307[label="Nothing == Just yvy30000",fontsize=16,color="black",shape="box"];1307 -> 1483[label="",style="solid", color="black", weight=3]; 1308[label="Just yvy40000 == Nothing",fontsize=16,color="black",shape="box"];1308 -> 1484[label="",style="solid", color="black", weight=3]; 1309[label="Just yvy40000 == Just yvy30000",fontsize=16,color="black",shape="box"];1309 -> 1485[label="",style="solid", color="black", weight=3]; 1310[label="primEqFloat (Float yvy40000 yvy40001) yvy3000",fontsize=16,color="burlywood",shape="box"];4589[label="yvy3000/Float yvy30000 yvy30001",fontsize=10,color="white",style="solid",shape="box"];1310 -> 4589[label="",style="solid", color="burlywood", weight=9]; 4589 -> 1486[label="",style="solid", color="burlywood", weight=3]; 1311[label="primEqInt (Pos yvy40000) yvy3000",fontsize=16,color="burlywood",shape="box"];4590[label="yvy40000/Succ yvy400000",fontsize=10,color="white",style="solid",shape="box"];1311 -> 4590[label="",style="solid", color="burlywood", weight=9]; 4590 -> 1487[label="",style="solid", color="burlywood", weight=3]; 4591[label="yvy40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1311 -> 4591[label="",style="solid", color="burlywood", weight=9]; 4591 -> 1488[label="",style="solid", color="burlywood", weight=3]; 1312[label="primEqInt (Neg yvy40000) yvy3000",fontsize=16,color="burlywood",shape="box"];4592[label="yvy40000/Succ yvy400000",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4592[label="",style="solid", color="burlywood", weight=9]; 4592 -> 1489[label="",style="solid", color="burlywood", weight=3]; 4593[label="yvy40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4593[label="",style="solid", color="burlywood", weight=9]; 4593 -> 1490[label="",style="solid", color="burlywood", weight=3]; 1313[label="LT == LT",fontsize=16,color="black",shape="box"];1313 -> 1491[label="",style="solid", color="black", weight=3]; 1314[label="LT == EQ",fontsize=16,color="black",shape="box"];1314 -> 1492[label="",style="solid", color="black", weight=3]; 1315[label="LT == GT",fontsize=16,color="black",shape="box"];1315 -> 1493[label="",style="solid", color="black", weight=3]; 1316[label="EQ == LT",fontsize=16,color="black",shape="box"];1316 -> 1494[label="",style="solid", color="black", weight=3]; 1317[label="EQ == EQ",fontsize=16,color="black",shape="box"];1317 -> 1495[label="",style="solid", color="black", weight=3]; 1318[label="EQ == GT",fontsize=16,color="black",shape="box"];1318 -> 1496[label="",style="solid", color="black", weight=3]; 1319[label="GT == LT",fontsize=16,color="black",shape="box"];1319 -> 1497[label="",style="solid", color="black", weight=3]; 1320[label="GT == EQ",fontsize=16,color="black",shape="box"];1320 -> 1498[label="",style="solid", color="black", weight=3]; 1321[label="GT == GT",fontsize=16,color="black",shape="box"];1321 -> 1499[label="",style="solid", color="black", weight=3]; 1322[label="yvy40000 :% yvy40001 == yvy30000 :% yvy30001",fontsize=16,color="black",shape="box"];1322 -> 1500[label="",style="solid", color="black", weight=3]; 1323[label="() == ()",fontsize=16,color="black",shape="box"];1323 -> 1501[label="",style="solid", color="black", weight=3]; 1324[label="Integer yvy40000 == Integer yvy30000",fontsize=16,color="black",shape="box"];1324 -> 1502[label="",style="solid", color="black", weight=3]; 1733[label="yvy89 <= yvy90",fontsize=16,color="blue",shape="box"];4594[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4594[label="",style="solid", color="blue", weight=9]; 4594 -> 1891[label="",style="solid", color="blue", weight=3]; 4595[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4595[label="",style="solid", color="blue", weight=9]; 4595 -> 1892[label="",style="solid", color="blue", weight=3]; 4596[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4596[label="",style="solid", color="blue", weight=9]; 4596 -> 1893[label="",style="solid", color="blue", weight=3]; 4597[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4597[label="",style="solid", color="blue", weight=9]; 4597 -> 1894[label="",style="solid", color="blue", weight=3]; 4598[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4598[label="",style="solid", color="blue", weight=9]; 4598 -> 1895[label="",style="solid", color="blue", weight=3]; 4599[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4599[label="",style="solid", color="blue", weight=9]; 4599 -> 1896[label="",style="solid", color="blue", weight=3]; 4600[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4600[label="",style="solid", color="blue", weight=9]; 4600 -> 1897[label="",style="solid", color="blue", weight=3]; 4601[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4601[label="",style="solid", color="blue", weight=9]; 4601 -> 1898[label="",style="solid", color="blue", weight=3]; 4602[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4602[label="",style="solid", color="blue", weight=9]; 4602 -> 1899[label="",style="solid", color="blue", weight=3]; 4603[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4603[label="",style="solid", color="blue", weight=9]; 4603 -> 1900[label="",style="solid", color="blue", weight=3]; 4604[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4604[label="",style="solid", color="blue", weight=9]; 4604 -> 1901[label="",style="solid", color="blue", weight=3]; 4605[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4605[label="",style="solid", color="blue", weight=9]; 4605 -> 1902[label="",style="solid", color="blue", weight=3]; 4606[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4606[label="",style="solid", color="blue", weight=9]; 4606 -> 1903[label="",style="solid", color="blue", weight=3]; 4607[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4607[label="",style="solid", color="blue", weight=9]; 4607 -> 1904[label="",style="solid", color="blue", weight=3]; 1734[label="compare1 (Just yvy189) (Just yvy190) False",fontsize=16,color="black",shape="box"];1734 -> 1905[label="",style="solid", color="black", weight=3]; 1735[label="compare1 (Just yvy189) (Just yvy190) True",fontsize=16,color="black",shape="box"];1735 -> 1906[label="",style="solid", color="black", weight=3]; 1736[label="GT",fontsize=16,color="green",shape="box"];1737[label="GT",fontsize=16,color="green",shape="box"];1738[label="GT",fontsize=16,color="green",shape="box"];1804[label="yvy96 <= yvy97",fontsize=16,color="blue",shape="box"];4608[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1804 -> 4608[label="",style="solid", color="blue", weight=9]; 4608 -> 1907[label="",style="solid", color="blue", weight=3]; 4609[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1804 -> 4609[label="",style="solid", color="blue", weight=9]; 4609 -> 1908[label="",style="solid", color="blue", weight=3]; 4610[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1804 -> 4610[label="",style="solid", color="blue", weight=9]; 4610 -> 1909[label="",style="solid", color="blue", weight=3]; 4611[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1804 -> 4611[label="",style="solid", color="blue", weight=9]; 4611 -> 1910[label="",style="solid", color="blue", weight=3]; 4612[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1804 -> 4612[label="",style="solid", color="blue", weight=9]; 4612 -> 1911[label="",style="solid", color="blue", weight=3]; 4613[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1804 -> 4613[label="",style="solid", color="blue", weight=9]; 4613 -> 1912[label="",style="solid", color="blue", weight=3]; 4614[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1804 -> 4614[label="",style="solid", color="blue", weight=9]; 4614 -> 1913[label="",style="solid", color="blue", weight=3]; 4615[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1804 -> 4615[label="",style="solid", color="blue", weight=9]; 4615 -> 1914[label="",style="solid", color="blue", weight=3]; 4616[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1804 -> 4616[label="",style="solid", color="blue", weight=9]; 4616 -> 1915[label="",style="solid", color="blue", weight=3]; 4617[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1804 -> 4617[label="",style="solid", color="blue", weight=9]; 4617 -> 1916[label="",style="solid", color="blue", weight=3]; 4618[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1804 -> 4618[label="",style="solid", color="blue", weight=9]; 4618 -> 1917[label="",style="solid", color="blue", weight=3]; 4619[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1804 -> 4619[label="",style="solid", color="blue", weight=9]; 4619 -> 1918[label="",style="solid", color="blue", weight=3]; 4620[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1804 -> 4620[label="",style="solid", color="blue", weight=9]; 4620 -> 1919[label="",style="solid", color="blue", weight=3]; 4621[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1804 -> 4621[label="",style="solid", color="blue", weight=9]; 4621 -> 1920[label="",style="solid", color="blue", weight=3]; 1805[label="compare1 (Left yvy196) (Left yvy197) False",fontsize=16,color="black",shape="box"];1805 -> 1921[label="",style="solid", color="black", weight=3]; 1806[label="compare1 (Left yvy196) (Left yvy197) True",fontsize=16,color="black",shape="box"];1806 -> 1922[label="",style="solid", color="black", weight=3]; 1807[label="GT",fontsize=16,color="green",shape="box"];1815[label="yvy103 <= yvy104",fontsize=16,color="blue",shape="box"];4622[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 4622[label="",style="solid", color="blue", weight=9]; 4622 -> 1923[label="",style="solid", color="blue", weight=3]; 4623[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 4623[label="",style="solid", color="blue", weight=9]; 4623 -> 1924[label="",style="solid", color="blue", weight=3]; 4624[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 4624[label="",style="solid", color="blue", weight=9]; 4624 -> 1925[label="",style="solid", color="blue", weight=3]; 4625[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 4625[label="",style="solid", color="blue", weight=9]; 4625 -> 1926[label="",style="solid", color="blue", weight=3]; 4626[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 4626[label="",style="solid", color="blue", weight=9]; 4626 -> 1927[label="",style="solid", color="blue", weight=3]; 4627[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 4627[label="",style="solid", color="blue", weight=9]; 4627 -> 1928[label="",style="solid", color="blue", weight=3]; 4628[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 4628[label="",style="solid", color="blue", weight=9]; 4628 -> 1929[label="",style="solid", color="blue", weight=3]; 4629[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 4629[label="",style="solid", color="blue", weight=9]; 4629 -> 1930[label="",style="solid", color="blue", weight=3]; 4630[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 4630[label="",style="solid", color="blue", weight=9]; 4630 -> 1931[label="",style="solid", color="blue", weight=3]; 4631[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 4631[label="",style="solid", color="blue", weight=9]; 4631 -> 1932[label="",style="solid", color="blue", weight=3]; 4632[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 4632[label="",style="solid", color="blue", weight=9]; 4632 -> 1933[label="",style="solid", color="blue", weight=3]; 4633[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 4633[label="",style="solid", color="blue", weight=9]; 4633 -> 1934[label="",style="solid", color="blue", weight=3]; 4634[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 4634[label="",style="solid", color="blue", weight=9]; 4634 -> 1935[label="",style="solid", color="blue", weight=3]; 4635[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 4635[label="",style="solid", color="blue", weight=9]; 4635 -> 1936[label="",style="solid", color="blue", weight=3]; 1816[label="compare1 (Right yvy205) (Right yvy206) False",fontsize=16,color="black",shape="box"];1816 -> 1937[label="",style="solid", color="black", weight=3]; 1817[label="compare1 (Right yvy205) (Right yvy206) True",fontsize=16,color="black",shape="box"];1817 -> 1938[label="",style="solid", color="black", weight=3]; 1942 -> 1570[label="",style="dashed", color="red", weight=0]; 1942[label="yvy165 == yvy167 && yvy166 <= yvy168",fontsize=16,color="magenta"];1942 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1942 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1943[label="yvy167",fontsize=16,color="green",shape="box"];1944[label="yvy168",fontsize=16,color="green",shape="box"];1945[label="yvy165",fontsize=16,color="green",shape="box"];1946[label="yvy166",fontsize=16,color="green",shape="box"];1947[label="yvy165 < yvy167",fontsize=16,color="blue",shape="box"];4636[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4636[label="",style="solid", color="blue", weight=9]; 4636 -> 1956[label="",style="solid", color="blue", weight=3]; 4637[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4637[label="",style="solid", color="blue", weight=9]; 4637 -> 1957[label="",style="solid", color="blue", weight=3]; 4638[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4638[label="",style="solid", color="blue", weight=9]; 4638 -> 1958[label="",style="solid", color="blue", weight=3]; 4639[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4639[label="",style="solid", color="blue", weight=9]; 4639 -> 1959[label="",style="solid", color="blue", weight=3]; 4640[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4640[label="",style="solid", color="blue", weight=9]; 4640 -> 1960[label="",style="solid", color="blue", weight=3]; 4641[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4641[label="",style="solid", color="blue", weight=9]; 4641 -> 1961[label="",style="solid", color="blue", weight=3]; 4642[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4642[label="",style="solid", color="blue", weight=9]; 4642 -> 1962[label="",style="solid", color="blue", weight=3]; 4643[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4643[label="",style="solid", color="blue", weight=9]; 4643 -> 1963[label="",style="solid", color="blue", weight=3]; 4644[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4644[label="",style="solid", color="blue", weight=9]; 4644 -> 1964[label="",style="solid", color="blue", weight=3]; 4645[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4645[label="",style="solid", color="blue", weight=9]; 4645 -> 1965[label="",style="solid", color="blue", weight=3]; 4646[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4646[label="",style="solid", color="blue", weight=9]; 4646 -> 1966[label="",style="solid", color="blue", weight=3]; 4647[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4647[label="",style="solid", color="blue", weight=9]; 4647 -> 1967[label="",style="solid", color="blue", weight=3]; 4648[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4648[label="",style="solid", color="blue", weight=9]; 4648 -> 1968[label="",style="solid", color="blue", weight=3]; 4649[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4649[label="",style="solid", color="blue", weight=9]; 4649 -> 1969[label="",style="solid", color="blue", weight=3]; 1941[label="compare1 (yvy233,yvy234) (yvy235,yvy236) (yvy237 || yvy238)",fontsize=16,color="burlywood",shape="triangle"];4650[label="yvy237/False",fontsize=10,color="white",style="solid",shape="box"];1941 -> 4650[label="",style="solid", color="burlywood", weight=9]; 4650 -> 1970[label="",style="solid", color="burlywood", weight=3]; 4651[label="yvy237/True",fontsize=10,color="white",style="solid",shape="box"];1941 -> 4651[label="",style="solid", color="burlywood", weight=9]; 4651 -> 1971[label="",style="solid", color="burlywood", weight=3]; 1820 -> 1224[label="",style="dashed", color="red", weight=0]; 1820[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];1821[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 FiniteMap.EmptyFM yvy54)",fontsize=16,color="black",shape="box"];1821 -> 1972[label="",style="solid", color="black", weight=3]; 1822[label="primPlusInt yvy1182 (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54)",fontsize=16,color="burlywood",shape="box"];4652[label="yvy1182/Pos yvy11820",fontsize=10,color="white",style="solid",shape="box"];1822 -> 4652[label="",style="solid", color="burlywood", weight=9]; 4652 -> 1973[label="",style="solid", color="burlywood", weight=3]; 4653[label="yvy1182/Neg yvy11820",fontsize=10,color="white",style="solid",shape="box"];1822 -> 4653[label="",style="solid", color="burlywood", weight=9]; 4653 -> 1974[label="",style="solid", color="burlywood", weight=3]; 4093[label="FiniteMap.mkBranchResult yvy361 yvy362 yvy363 yvy364",fontsize=16,color="black",shape="box"];4093 -> 4124[label="",style="solid", color="black", weight=3]; 3037[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54",fontsize=16,color="black",shape="triangle"];3037 -> 3044[label="",style="solid", color="black", weight=3]; 3038 -> 665[label="",style="dashed", color="red", weight=0]; 3038[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54",fontsize=16,color="magenta"];3038 -> 3045[label="",style="dashed", color="magenta", weight=3]; 3038 -> 3046[label="",style="dashed", color="magenta", weight=3]; 3036[label="yvy311 > yvy310",fontsize=16,color="black",shape="triangle"];3036 -> 3047[label="",style="solid", color="black", weight=3]; 1983[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 False",fontsize=16,color="black",shape="box"];1983 -> 2004[label="",style="solid", color="black", weight=3]; 1984[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 True",fontsize=16,color="black",shape="box"];1984 -> 2005[label="",style="solid", color="black", weight=3]; 2706 -> 1460[label="",style="dashed", color="red", weight=0]; 2706[label="primMulNat yvy300000 (Succ yvy400100)",fontsize=16,color="magenta"];2706 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2706 -> 3035[label="",style="dashed", color="magenta", weight=3]; 3248[label="primPlusNat (Succ yvy30700) (Succ yvy4001000)",fontsize=16,color="black",shape="box"];3248 -> 3265[label="",style="solid", color="black", weight=3]; 3249[label="primPlusNat (Succ yvy30700) Zero",fontsize=16,color="black",shape="box"];3249 -> 3266[label="",style="solid", color="black", weight=3]; 3250[label="primPlusNat Zero (Succ yvy4001000)",fontsize=16,color="black",shape="box"];3250 -> 3267[label="",style="solid", color="black", weight=3]; 3251[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3251 -> 3268[label="",style="solid", color="black", weight=3]; 1828[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="black",shape="box"];1828 -> 1989[label="",style="solid", color="black", weight=3]; 1829[label="yvy130",fontsize=16,color="green",shape="box"];1830 -> 3997[label="",style="dashed", color="red", weight=0]; 1830[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"];1830 -> 4003[label="",style="dashed", color="magenta", weight=3]; 1830 -> 4004[label="",style="dashed", color="magenta", weight=3]; 1830 -> 4005[label="",style="dashed", color="magenta", weight=3]; 1830 -> 4006[label="",style="dashed", color="magenta", weight=3]; 1830 -> 4007[label="",style="dashed", color="magenta", weight=3]; 1831[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1832[label="yvy64",fontsize=16,color="green",shape="box"];1833[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64",fontsize=16,color="black",shape="box"];1833 -> 2006[label="",style="solid", color="black", weight=3]; 1834[label="yvy134",fontsize=16,color="green",shape="box"];1835 -> 3997[label="",style="dashed", color="red", weight=0]; 1835[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"];1835 -> 4008[label="",style="dashed", color="magenta", weight=3]; 1835 -> 4009[label="",style="dashed", color="magenta", weight=3]; 1835 -> 4010[label="",style="dashed", color="magenta", weight=3]; 1835 -> 4011[label="",style="dashed", color="magenta", weight=3]; 1835 -> 4012[label="",style="dashed", color="magenta", weight=3]; 1836[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1837[label="yvy64",fontsize=16,color="green",shape="box"];1838[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="black",shape="box"];1838 -> 2020[label="",style="solid", color="black", weight=3]; 1839[label="yvy138",fontsize=16,color="green",shape="box"];1840 -> 3997[label="",style="dashed", color="red", weight=0]; 1840[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"];1840 -> 4013[label="",style="dashed", color="magenta", weight=3]; 1840 -> 4014[label="",style="dashed", color="magenta", weight=3]; 1840 -> 4015[label="",style="dashed", color="magenta", weight=3]; 1840 -> 4016[label="",style="dashed", color="magenta", weight=3]; 1840 -> 4017[label="",style="dashed", color="magenta", weight=3]; 1841[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1842[label="yvy64",fontsize=16,color="green",shape="box"];1843[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64",fontsize=16,color="black",shape="box"];1843 -> 2035[label="",style="solid", color="black", weight=3]; 1844[label="yvy142",fontsize=16,color="green",shape="box"];1845 -> 3997[label="",style="dashed", color="red", weight=0]; 1845[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"];1845 -> 4018[label="",style="dashed", color="magenta", weight=3]; 1845 -> 4019[label="",style="dashed", color="magenta", weight=3]; 1845 -> 4020[label="",style="dashed", color="magenta", weight=3]; 1845 -> 4021[label="",style="dashed", color="magenta", weight=3]; 1845 -> 4022[label="",style="dashed", color="magenta", weight=3]; 1846[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1847[label="yvy64",fontsize=16,color="green",shape="box"];1850[label="yvy40010",fontsize=16,color="green",shape="box"];1851[label="yvy30000",fontsize=16,color="green",shape="box"];1852[label="yvy30000",fontsize=16,color="green",shape="box"];1853[label="yvy40010",fontsize=16,color="green",shape="box"];1873[label="yvy152 < yvy155",fontsize=16,color="black",shape="triangle"];1873 -> 2053[label="",style="solid", color="black", weight=3]; 1874[label="yvy152 < yvy155",fontsize=16,color="black",shape="triangle"];1874 -> 2054[label="",style="solid", color="black", weight=3]; 1875[label="yvy152 < yvy155",fontsize=16,color="black",shape="triangle"];1875 -> 2055[label="",style="solid", color="black", weight=3]; 1876[label="yvy152 < yvy155",fontsize=16,color="black",shape="triangle"];1876 -> 2056[label="",style="solid", color="black", weight=3]; 1877[label="yvy152 < yvy155",fontsize=16,color="black",shape="triangle"];1877 -> 2057[label="",style="solid", color="black", weight=3]; 1878[label="yvy152 < yvy155",fontsize=16,color="black",shape="triangle"];1878 -> 2058[label="",style="solid", color="black", weight=3]; 1879[label="yvy152 < yvy155",fontsize=16,color="black",shape="triangle"];1879 -> 2059[label="",style="solid", color="black", weight=3]; 1880[label="yvy152 < yvy155",fontsize=16,color="black",shape="triangle"];1880 -> 2060[label="",style="solid", color="black", weight=3]; 1881[label="yvy152 < yvy155",fontsize=16,color="black",shape="triangle"];1881 -> 2061[label="",style="solid", color="black", weight=3]; 1882[label="yvy152 < yvy155",fontsize=16,color="black",shape="triangle"];1882 -> 2062[label="",style="solid", color="black", weight=3]; 1883[label="yvy152 < yvy155",fontsize=16,color="black",shape="triangle"];1883 -> 2063[label="",style="solid", color="black", weight=3]; 1884[label="yvy152 < yvy155",fontsize=16,color="black",shape="triangle"];1884 -> 2064[label="",style="solid", color="black", weight=3]; 1885[label="yvy152 < yvy155",fontsize=16,color="black",shape="triangle"];1885 -> 2065[label="",style="solid", color="black", weight=3]; 1886[label="yvy152 < yvy155",fontsize=16,color="black",shape="triangle"];1886 -> 2066[label="",style="solid", color="black", weight=3]; 1887 -> 2348[label="",style="dashed", color="red", weight=0]; 1887[label="yvy153 < yvy156 || yvy153 == yvy156 && yvy154 <= yvy157",fontsize=16,color="magenta"];1887 -> 2349[label="",style="dashed", color="magenta", weight=3]; 1887 -> 2350[label="",style="dashed", color="magenta", weight=3]; 1888[label="yvy152 == yvy155",fontsize=16,color="blue",shape="box"];4654[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4654[label="",style="solid", color="blue", weight=9]; 4654 -> 2069[label="",style="solid", color="blue", weight=3]; 4655[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4655[label="",style="solid", color="blue", weight=9]; 4655 -> 2070[label="",style="solid", color="blue", weight=3]; 4656[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4656[label="",style="solid", color="blue", weight=9]; 4656 -> 2071[label="",style="solid", color="blue", weight=3]; 4657[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4657[label="",style="solid", color="blue", weight=9]; 4657 -> 2072[label="",style="solid", color="blue", weight=3]; 4658[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4658[label="",style="solid", color="blue", weight=9]; 4658 -> 2073[label="",style="solid", color="blue", weight=3]; 4659[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4659[label="",style="solid", color="blue", weight=9]; 4659 -> 2074[label="",style="solid", color="blue", weight=3]; 4660[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4660[label="",style="solid", color="blue", weight=9]; 4660 -> 2075[label="",style="solid", color="blue", weight=3]; 4661[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4661[label="",style="solid", color="blue", weight=9]; 4661 -> 2076[label="",style="solid", color="blue", weight=3]; 4662[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4662[label="",style="solid", color="blue", weight=9]; 4662 -> 2077[label="",style="solid", color="blue", weight=3]; 4663[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4663[label="",style="solid", color="blue", weight=9]; 4663 -> 2078[label="",style="solid", color="blue", weight=3]; 4664[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4664[label="",style="solid", color="blue", weight=9]; 4664 -> 2079[label="",style="solid", color="blue", weight=3]; 4665[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4665[label="",style="solid", color="blue", weight=9]; 4665 -> 2080[label="",style="solid", color="blue", weight=3]; 4666[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4666[label="",style="solid", color="blue", weight=9]; 4666 -> 2081[label="",style="solid", color="blue", weight=3]; 4667[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4667[label="",style="solid", color="blue", weight=9]; 4667 -> 2082[label="",style="solid", color="blue", weight=3]; 1889[label="compare1 (yvy218,yvy219,yvy220) (yvy221,yvy222,yvy223) (False || yvy225)",fontsize=16,color="black",shape="box"];1889 -> 2083[label="",style="solid", color="black", weight=3]; 1890[label="compare1 (yvy218,yvy219,yvy220) (yvy221,yvy222,yvy223) (True || yvy225)",fontsize=16,color="black",shape="box"];1890 -> 2084[label="",style="solid", color="black", weight=3]; 1466 -> 1570[label="",style="dashed", color="red", weight=0]; 1466[label="yvy40000 == yvy30000 && yvy40001 == yvy30001",fontsize=16,color="magenta"];1466 -> 1579[label="",style="dashed", color="magenta", weight=3]; 1466 -> 1580[label="",style="dashed", color="magenta", weight=3]; 1467[label="False",fontsize=16,color="green",shape="box"];1468[label="False",fontsize=16,color="green",shape="box"];1469[label="True",fontsize=16,color="green",shape="box"];1470 -> 1570[label="",style="dashed", color="red", weight=0]; 1470[label="yvy40000 == yvy30000 && yvy40001 == yvy30001 && yvy40002 == yvy30002",fontsize=16,color="magenta"];1470 -> 1581[label="",style="dashed", color="magenta", weight=3]; 1470 -> 1582[label="",style="dashed", color="magenta", weight=3]; 1471[label="True",fontsize=16,color="green",shape="box"];1472[label="False",fontsize=16,color="green",shape="box"];1473[label="False",fontsize=16,color="green",shape="box"];1474[label="True",fontsize=16,color="green",shape="box"];1475 -> 1570[label="",style="dashed", color="red", weight=0]; 1475[label="yvy40000 == yvy30000 && yvy40001 == yvy30001",fontsize=16,color="magenta"];1475 -> 1583[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1584[label="",style="dashed", color="magenta", weight=3]; 1476[label="primEqDouble (Double yvy40000 yvy40001) (Double yvy30000 yvy30001)",fontsize=16,color="black",shape="box"];1476 -> 2085[label="",style="solid", color="black", weight=3]; 1477[label="primEqChar (Char yvy40000) (Char yvy30000)",fontsize=16,color="black",shape="box"];1477 -> 2086[label="",style="solid", color="black", weight=3]; 1478[label="yvy40000 == yvy30000",fontsize=16,color="blue",shape="box"];4668[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 4668[label="",style="solid", color="blue", weight=9]; 4668 -> 2087[label="",style="solid", color="blue", weight=3]; 4669[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 4669[label="",style="solid", color="blue", weight=9]; 4669 -> 2088[label="",style="solid", color="blue", weight=3]; 4670[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 4670[label="",style="solid", color="blue", weight=9]; 4670 -> 2089[label="",style="solid", color="blue", weight=3]; 4671[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 4671[label="",style="solid", color="blue", weight=9]; 4671 -> 2090[label="",style="solid", color="blue", weight=3]; 4672[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 4672[label="",style="solid", color="blue", weight=9]; 4672 -> 2091[label="",style="solid", color="blue", weight=3]; 4673[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 4673[label="",style="solid", color="blue", weight=9]; 4673 -> 2092[label="",style="solid", color="blue", weight=3]; 4674[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 4674[label="",style="solid", color="blue", weight=9]; 4674 -> 2093[label="",style="solid", color="blue", weight=3]; 4675[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 4675[label="",style="solid", color="blue", weight=9]; 4675 -> 2094[label="",style="solid", color="blue", weight=3]; 4676[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 4676[label="",style="solid", color="blue", weight=9]; 4676 -> 2095[label="",style="solid", color="blue", weight=3]; 4677[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 4677[label="",style="solid", color="blue", weight=9]; 4677 -> 2096[label="",style="solid", color="blue", weight=3]; 4678[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 4678[label="",style="solid", color="blue", weight=9]; 4678 -> 2097[label="",style="solid", color="blue", weight=3]; 4679[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 4679[label="",style="solid", color="blue", weight=9]; 4679 -> 2098[label="",style="solid", color="blue", weight=3]; 4680[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 4680[label="",style="solid", color="blue", weight=9]; 4680 -> 2099[label="",style="solid", color="blue", weight=3]; 4681[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 4681[label="",style="solid", color="blue", weight=9]; 4681 -> 2100[label="",style="solid", color="blue", weight=3]; 1479[label="False",fontsize=16,color="green",shape="box"];1480[label="False",fontsize=16,color="green",shape="box"];1481[label="yvy40000 == yvy30000",fontsize=16,color="blue",shape="box"];4682[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 4682[label="",style="solid", color="blue", weight=9]; 4682 -> 2101[label="",style="solid", color="blue", weight=3]; 4683[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 4683[label="",style="solid", color="blue", weight=9]; 4683 -> 2102[label="",style="solid", color="blue", weight=3]; 4684[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 4684[label="",style="solid", color="blue", weight=9]; 4684 -> 2103[label="",style="solid", color="blue", weight=3]; 4685[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 4685[label="",style="solid", color="blue", weight=9]; 4685 -> 2104[label="",style="solid", color="blue", weight=3]; 4686[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 4686[label="",style="solid", color="blue", weight=9]; 4686 -> 2105[label="",style="solid", color="blue", weight=3]; 4687[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 4687[label="",style="solid", color="blue", weight=9]; 4687 -> 2106[label="",style="solid", color="blue", weight=3]; 4688[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 4688[label="",style="solid", color="blue", weight=9]; 4688 -> 2107[label="",style="solid", color="blue", weight=3]; 4689[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 4689[label="",style="solid", color="blue", weight=9]; 4689 -> 2108[label="",style="solid", color="blue", weight=3]; 4690[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 4690[label="",style="solid", color="blue", weight=9]; 4690 -> 2109[label="",style="solid", color="blue", weight=3]; 4691[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 4691[label="",style="solid", color="blue", weight=9]; 4691 -> 2110[label="",style="solid", color="blue", weight=3]; 4692[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 4692[label="",style="solid", color="blue", weight=9]; 4692 -> 2111[label="",style="solid", color="blue", weight=3]; 4693[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 4693[label="",style="solid", color="blue", weight=9]; 4693 -> 2112[label="",style="solid", color="blue", weight=3]; 4694[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 4694[label="",style="solid", color="blue", weight=9]; 4694 -> 2113[label="",style="solid", color="blue", weight=3]; 4695[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 4695[label="",style="solid", color="blue", weight=9]; 4695 -> 2114[label="",style="solid", color="blue", weight=3]; 1482[label="True",fontsize=16,color="green",shape="box"];1483[label="False",fontsize=16,color="green",shape="box"];1484[label="False",fontsize=16,color="green",shape="box"];1485[label="yvy40000 == yvy30000",fontsize=16,color="blue",shape="box"];4696[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 4696[label="",style="solid", color="blue", weight=9]; 4696 -> 2115[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"];1485 -> 4697[label="",style="solid", color="blue", weight=9]; 4697 -> 2116[label="",style="solid", color="blue", weight=3]; 4698[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 4698[label="",style="solid", color="blue", weight=9]; 4698 -> 2117[label="",style="solid", color="blue", weight=3]; 4699[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 4699[label="",style="solid", color="blue", weight=9]; 4699 -> 2118[label="",style="solid", color="blue", weight=3]; 4700[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 4700[label="",style="solid", color="blue", weight=9]; 4700 -> 2119[label="",style="solid", color="blue", weight=3]; 4701[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 4701[label="",style="solid", color="blue", weight=9]; 4701 -> 2120[label="",style="solid", color="blue", weight=3]; 4702[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 4702[label="",style="solid", color="blue", weight=9]; 4702 -> 2121[label="",style="solid", color="blue", weight=3]; 4703[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 4703[label="",style="solid", color="blue", weight=9]; 4703 -> 2122[label="",style="solid", color="blue", weight=3]; 4704[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 4704[label="",style="solid", color="blue", weight=9]; 4704 -> 2123[label="",style="solid", color="blue", weight=3]; 4705[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 4705[label="",style="solid", color="blue", weight=9]; 4705 -> 2124[label="",style="solid", color="blue", weight=3]; 4706[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 4706[label="",style="solid", color="blue", weight=9]; 4706 -> 2125[label="",style="solid", color="blue", weight=3]; 4707[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 4707[label="",style="solid", color="blue", weight=9]; 4707 -> 2126[label="",style="solid", color="blue", weight=3]; 4708[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 4708[label="",style="solid", color="blue", weight=9]; 4708 -> 2127[label="",style="solid", color="blue", weight=3]; 4709[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 4709[label="",style="solid", color="blue", weight=9]; 4709 -> 2128[label="",style="solid", color="blue", weight=3]; 1486[label="primEqFloat (Float yvy40000 yvy40001) (Float yvy30000 yvy30001)",fontsize=16,color="black",shape="box"];1486 -> 2129[label="",style="solid", color="black", weight=3]; 1487[label="primEqInt (Pos (Succ yvy400000)) yvy3000",fontsize=16,color="burlywood",shape="box"];4710[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1487 -> 4710[label="",style="solid", color="burlywood", weight=9]; 4710 -> 2130[label="",style="solid", color="burlywood", weight=3]; 4711[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1487 -> 4711[label="",style="solid", color="burlywood", weight=9]; 4711 -> 2131[label="",style="solid", color="burlywood", weight=3]; 1488[label="primEqInt (Pos Zero) yvy3000",fontsize=16,color="burlywood",shape="box"];4712[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1488 -> 4712[label="",style="solid", color="burlywood", weight=9]; 4712 -> 2132[label="",style="solid", color="burlywood", weight=3]; 4713[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1488 -> 4713[label="",style="solid", color="burlywood", weight=9]; 4713 -> 2133[label="",style="solid", color="burlywood", weight=3]; 1489[label="primEqInt (Neg (Succ yvy400000)) yvy3000",fontsize=16,color="burlywood",shape="box"];4714[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1489 -> 4714[label="",style="solid", color="burlywood", weight=9]; 4714 -> 2134[label="",style="solid", color="burlywood", weight=3]; 4715[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1489 -> 4715[label="",style="solid", color="burlywood", weight=9]; 4715 -> 2135[label="",style="solid", color="burlywood", weight=3]; 1490[label="primEqInt (Neg Zero) yvy3000",fontsize=16,color="burlywood",shape="box"];4716[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1490 -> 4716[label="",style="solid", color="burlywood", weight=9]; 4716 -> 2136[label="",style="solid", color="burlywood", weight=3]; 4717[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1490 -> 4717[label="",style="solid", color="burlywood", weight=9]; 4717 -> 2137[label="",style="solid", color="burlywood", weight=3]; 1491[label="True",fontsize=16,color="green",shape="box"];1492[label="False",fontsize=16,color="green",shape="box"];1493[label="False",fontsize=16,color="green",shape="box"];1494[label="False",fontsize=16,color="green",shape="box"];1495[label="True",fontsize=16,color="green",shape="box"];1496[label="False",fontsize=16,color="green",shape="box"];1497[label="False",fontsize=16,color="green",shape="box"];1498[label="False",fontsize=16,color="green",shape="box"];1499[label="True",fontsize=16,color="green",shape="box"];1500 -> 1570[label="",style="dashed", color="red", weight=0]; 1500[label="yvy40000 == yvy30000 && yvy40001 == yvy30001",fontsize=16,color="magenta"];1500 -> 1585[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1586[label="",style="dashed", color="magenta", weight=3]; 1501[label="True",fontsize=16,color="green",shape="box"];1502 -> 1063[label="",style="dashed", color="red", weight=0]; 1502[label="primEqInt yvy40000 yvy30000",fontsize=16,color="magenta"];1502 -> 2138[label="",style="dashed", color="magenta", weight=3]; 1502 -> 2139[label="",style="dashed", color="magenta", weight=3]; 1891[label="yvy89 <= yvy90",fontsize=16,color="black",shape="triangle"];1891 -> 2140[label="",style="solid", color="black", weight=3]; 1892[label="yvy89 <= yvy90",fontsize=16,color="burlywood",shape="triangle"];4718[label="yvy89/False",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4718[label="",style="solid", color="burlywood", weight=9]; 4718 -> 2141[label="",style="solid", color="burlywood", weight=3]; 4719[label="yvy89/True",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4719[label="",style="solid", color="burlywood", weight=9]; 4719 -> 2142[label="",style="solid", color="burlywood", weight=3]; 1893[label="yvy89 <= yvy90",fontsize=16,color="black",shape="triangle"];1893 -> 2143[label="",style="solid", color="black", weight=3]; 1894[label="yvy89 <= yvy90",fontsize=16,color="black",shape="triangle"];1894 -> 2144[label="",style="solid", color="black", weight=3]; 1895[label="yvy89 <= yvy90",fontsize=16,color="black",shape="triangle"];1895 -> 2145[label="",style="solid", color="black", weight=3]; 1896[label="yvy89 <= yvy90",fontsize=16,color="black",shape="triangle"];1896 -> 2146[label="",style="solid", color="black", weight=3]; 1897[label="yvy89 <= yvy90",fontsize=16,color="black",shape="triangle"];1897 -> 2147[label="",style="solid", color="black", weight=3]; 1898[label="yvy89 <= yvy90",fontsize=16,color="burlywood",shape="triangle"];4720[label="yvy89/(yvy890,yvy891,yvy892)",fontsize=10,color="white",style="solid",shape="box"];1898 -> 4720[label="",style="solid", color="burlywood", weight=9]; 4720 -> 2148[label="",style="solid", color="burlywood", weight=3]; 1899[label="yvy89 <= yvy90",fontsize=16,color="burlywood",shape="triangle"];4721[label="yvy89/Nothing",fontsize=10,color="white",style="solid",shape="box"];1899 -> 4721[label="",style="solid", color="burlywood", weight=9]; 4721 -> 2149[label="",style="solid", color="burlywood", weight=3]; 4722[label="yvy89/Just yvy890",fontsize=10,color="white",style="solid",shape="box"];1899 -> 4722[label="",style="solid", color="burlywood", weight=9]; 4722 -> 2150[label="",style="solid", color="burlywood", weight=3]; 1900[label="yvy89 <= yvy90",fontsize=16,color="burlywood",shape="triangle"];4723[label="yvy89/LT",fontsize=10,color="white",style="solid",shape="box"];1900 -> 4723[label="",style="solid", color="burlywood", weight=9]; 4723 -> 2151[label="",style="solid", color="burlywood", weight=3]; 4724[label="yvy89/EQ",fontsize=10,color="white",style="solid",shape="box"];1900 -> 4724[label="",style="solid", color="burlywood", weight=9]; 4724 -> 2152[label="",style="solid", color="burlywood", weight=3]; 4725[label="yvy89/GT",fontsize=10,color="white",style="solid",shape="box"];1900 -> 4725[label="",style="solid", color="burlywood", weight=9]; 4725 -> 2153[label="",style="solid", color="burlywood", weight=3]; 1901[label="yvy89 <= yvy90",fontsize=16,color="black",shape="triangle"];1901 -> 2154[label="",style="solid", color="black", weight=3]; 1902[label="yvy89 <= yvy90",fontsize=16,color="black",shape="triangle"];1902 -> 2155[label="",style="solid", color="black", weight=3]; 1903[label="yvy89 <= yvy90",fontsize=16,color="burlywood",shape="triangle"];4726[label="yvy89/Left yvy890",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4726[label="",style="solid", color="burlywood", weight=9]; 4726 -> 2156[label="",style="solid", color="burlywood", weight=3]; 4727[label="yvy89/Right yvy890",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4727[label="",style="solid", color="burlywood", weight=9]; 4727 -> 2157[label="",style="solid", color="burlywood", weight=3]; 1904[label="yvy89 <= yvy90",fontsize=16,color="burlywood",shape="triangle"];4728[label="yvy89/(yvy890,yvy891)",fontsize=10,color="white",style="solid",shape="box"];1904 -> 4728[label="",style="solid", color="burlywood", weight=9]; 4728 -> 2158[label="",style="solid", color="burlywood", weight=3]; 1905[label="compare0 (Just yvy189) (Just yvy190) otherwise",fontsize=16,color="black",shape="box"];1905 -> 2159[label="",style="solid", color="black", weight=3]; 1906[label="LT",fontsize=16,color="green",shape="box"];1907 -> 1891[label="",style="dashed", color="red", weight=0]; 1907[label="yvy96 <= yvy97",fontsize=16,color="magenta"];1907 -> 2160[label="",style="dashed", color="magenta", weight=3]; 1907 -> 2161[label="",style="dashed", color="magenta", weight=3]; 1908 -> 1892[label="",style="dashed", color="red", weight=0]; 1908[label="yvy96 <= yvy97",fontsize=16,color="magenta"];1908 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1908 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1909 -> 1893[label="",style="dashed", color="red", weight=0]; 1909[label="yvy96 <= yvy97",fontsize=16,color="magenta"];1909 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1909 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1910 -> 1894[label="",style="dashed", color="red", weight=0]; 1910[label="yvy96 <= yvy97",fontsize=16,color="magenta"];1910 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1910 -> 2167[label="",style="dashed", color="magenta", weight=3]; 1911 -> 1895[label="",style="dashed", color="red", weight=0]; 1911[label="yvy96 <= yvy97",fontsize=16,color="magenta"];1911 -> 2168[label="",style="dashed", color="magenta", weight=3]; 1911 -> 2169[label="",style="dashed", color="magenta", weight=3]; 1912 -> 1896[label="",style="dashed", color="red", weight=0]; 1912[label="yvy96 <= yvy97",fontsize=16,color="magenta"];1912 -> 2170[label="",style="dashed", color="magenta", weight=3]; 1912 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1913 -> 1897[label="",style="dashed", color="red", weight=0]; 1913[label="yvy96 <= yvy97",fontsize=16,color="magenta"];1913 -> 2172[label="",style="dashed", color="magenta", weight=3]; 1913 -> 2173[label="",style="dashed", color="magenta", weight=3]; 1914 -> 1898[label="",style="dashed", color="red", weight=0]; 1914[label="yvy96 <= yvy97",fontsize=16,color="magenta"];1914 -> 2174[label="",style="dashed", color="magenta", weight=3]; 1914 -> 2175[label="",style="dashed", color="magenta", weight=3]; 1915 -> 1899[label="",style="dashed", color="red", weight=0]; 1915[label="yvy96 <= yvy97",fontsize=16,color="magenta"];1915 -> 2176[label="",style="dashed", color="magenta", weight=3]; 1915 -> 2177[label="",style="dashed", color="magenta", weight=3]; 1916 -> 1900[label="",style="dashed", color="red", weight=0]; 1916[label="yvy96 <= yvy97",fontsize=16,color="magenta"];1916 -> 2178[label="",style="dashed", color="magenta", weight=3]; 1916 -> 2179[label="",style="dashed", color="magenta", weight=3]; 1917 -> 1901[label="",style="dashed", color="red", weight=0]; 1917[label="yvy96 <= yvy97",fontsize=16,color="magenta"];1917 -> 2180[label="",style="dashed", color="magenta", weight=3]; 1917 -> 2181[label="",style="dashed", color="magenta", weight=3]; 1918 -> 1902[label="",style="dashed", color="red", weight=0]; 1918[label="yvy96 <= yvy97",fontsize=16,color="magenta"];1918 -> 2182[label="",style="dashed", color="magenta", weight=3]; 1918 -> 2183[label="",style="dashed", color="magenta", weight=3]; 1919 -> 1903[label="",style="dashed", color="red", weight=0]; 1919[label="yvy96 <= yvy97",fontsize=16,color="magenta"];1919 -> 2184[label="",style="dashed", color="magenta", weight=3]; 1919 -> 2185[label="",style="dashed", color="magenta", weight=3]; 1920 -> 1904[label="",style="dashed", color="red", weight=0]; 1920[label="yvy96 <= yvy97",fontsize=16,color="magenta"];1920 -> 2186[label="",style="dashed", color="magenta", weight=3]; 1920 -> 2187[label="",style="dashed", color="magenta", weight=3]; 1921[label="compare0 (Left yvy196) (Left yvy197) otherwise",fontsize=16,color="black",shape="box"];1921 -> 2188[label="",style="solid", color="black", weight=3]; 1922[label="LT",fontsize=16,color="green",shape="box"];1923 -> 1891[label="",style="dashed", color="red", weight=0]; 1923[label="yvy103 <= yvy104",fontsize=16,color="magenta"];1923 -> 2189[label="",style="dashed", color="magenta", weight=3]; 1923 -> 2190[label="",style="dashed", color="magenta", weight=3]; 1924 -> 1892[label="",style="dashed", color="red", weight=0]; 1924[label="yvy103 <= yvy104",fontsize=16,color="magenta"];1924 -> 2191[label="",style="dashed", color="magenta", weight=3]; 1924 -> 2192[label="",style="dashed", color="magenta", weight=3]; 1925 -> 1893[label="",style="dashed", color="red", weight=0]; 1925[label="yvy103 <= yvy104",fontsize=16,color="magenta"];1925 -> 2193[label="",style="dashed", color="magenta", weight=3]; 1925 -> 2194[label="",style="dashed", color="magenta", weight=3]; 1926 -> 1894[label="",style="dashed", color="red", weight=0]; 1926[label="yvy103 <= yvy104",fontsize=16,color="magenta"];1926 -> 2195[label="",style="dashed", color="magenta", weight=3]; 1926 -> 2196[label="",style="dashed", color="magenta", weight=3]; 1927 -> 1895[label="",style="dashed", color="red", weight=0]; 1927[label="yvy103 <= yvy104",fontsize=16,color="magenta"];1927 -> 2197[label="",style="dashed", color="magenta", weight=3]; 1927 -> 2198[label="",style="dashed", color="magenta", weight=3]; 1928 -> 1896[label="",style="dashed", color="red", weight=0]; 1928[label="yvy103 <= yvy104",fontsize=16,color="magenta"];1928 -> 2199[label="",style="dashed", color="magenta", weight=3]; 1928 -> 2200[label="",style="dashed", color="magenta", weight=3]; 1929 -> 1897[label="",style="dashed", color="red", weight=0]; 1929[label="yvy103 <= yvy104",fontsize=16,color="magenta"];1929 -> 2201[label="",style="dashed", color="magenta", weight=3]; 1929 -> 2202[label="",style="dashed", color="magenta", weight=3]; 1930 -> 1898[label="",style="dashed", color="red", weight=0]; 1930[label="yvy103 <= yvy104",fontsize=16,color="magenta"];1930 -> 2203[label="",style="dashed", color="magenta", weight=3]; 1930 -> 2204[label="",style="dashed", color="magenta", weight=3]; 1931 -> 1899[label="",style="dashed", color="red", weight=0]; 1931[label="yvy103 <= yvy104",fontsize=16,color="magenta"];1931 -> 2205[label="",style="dashed", color="magenta", weight=3]; 1931 -> 2206[label="",style="dashed", color="magenta", weight=3]; 1932 -> 1900[label="",style="dashed", color="red", weight=0]; 1932[label="yvy103 <= yvy104",fontsize=16,color="magenta"];1932 -> 2207[label="",style="dashed", color="magenta", weight=3]; 1932 -> 2208[label="",style="dashed", color="magenta", weight=3]; 1933 -> 1901[label="",style="dashed", color="red", weight=0]; 1933[label="yvy103 <= yvy104",fontsize=16,color="magenta"];1933 -> 2209[label="",style="dashed", color="magenta", weight=3]; 1933 -> 2210[label="",style="dashed", color="magenta", weight=3]; 1934 -> 1902[label="",style="dashed", color="red", weight=0]; 1934[label="yvy103 <= yvy104",fontsize=16,color="magenta"];1934 -> 2211[label="",style="dashed", color="magenta", weight=3]; 1934 -> 2212[label="",style="dashed", color="magenta", weight=3]; 1935 -> 1903[label="",style="dashed", color="red", weight=0]; 1935[label="yvy103 <= yvy104",fontsize=16,color="magenta"];1935 -> 2213[label="",style="dashed", color="magenta", weight=3]; 1935 -> 2214[label="",style="dashed", color="magenta", weight=3]; 1936 -> 1904[label="",style="dashed", color="red", weight=0]; 1936[label="yvy103 <= yvy104",fontsize=16,color="magenta"];1936 -> 2215[label="",style="dashed", color="magenta", weight=3]; 1936 -> 2216[label="",style="dashed", color="magenta", weight=3]; 1937[label="compare0 (Right yvy205) (Right yvy206) otherwise",fontsize=16,color="black",shape="box"];1937 -> 2217[label="",style="solid", color="black", weight=3]; 1938[label="LT",fontsize=16,color="green",shape="box"];1954[label="yvy166 <= yvy168",fontsize=16,color="blue",shape="box"];4729[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1954 -> 4729[label="",style="solid", color="blue", weight=9]; 4729 -> 2218[label="",style="solid", color="blue", weight=3]; 4730[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1954 -> 4730[label="",style="solid", color="blue", weight=9]; 4730 -> 2219[label="",style="solid", color="blue", weight=3]; 4731[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1954 -> 4731[label="",style="solid", color="blue", weight=9]; 4731 -> 2220[label="",style="solid", color="blue", weight=3]; 4732[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1954 -> 4732[label="",style="solid", color="blue", weight=9]; 4732 -> 2221[label="",style="solid", color="blue", weight=3]; 4733[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1954 -> 4733[label="",style="solid", color="blue", weight=9]; 4733 -> 2222[label="",style="solid", color="blue", weight=3]; 4734[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1954 -> 4734[label="",style="solid", color="blue", weight=9]; 4734 -> 2223[label="",style="solid", color="blue", weight=3]; 4735[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1954 -> 4735[label="",style="solid", color="blue", weight=9]; 4735 -> 2224[label="",style="solid", color="blue", weight=3]; 4736[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1954 -> 4736[label="",style="solid", color="blue", weight=9]; 4736 -> 2225[label="",style="solid", color="blue", weight=3]; 4737[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1954 -> 4737[label="",style="solid", color="blue", weight=9]; 4737 -> 2226[label="",style="solid", color="blue", weight=3]; 4738[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1954 -> 4738[label="",style="solid", color="blue", weight=9]; 4738 -> 2227[label="",style="solid", color="blue", weight=3]; 4739[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1954 -> 4739[label="",style="solid", color="blue", weight=9]; 4739 -> 2228[label="",style="solid", color="blue", weight=3]; 4740[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1954 -> 4740[label="",style="solid", color="blue", weight=9]; 4740 -> 2229[label="",style="solid", color="blue", weight=3]; 4741[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1954 -> 4741[label="",style="solid", color="blue", weight=9]; 4741 -> 2230[label="",style="solid", color="blue", weight=3]; 4742[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1954 -> 4742[label="",style="solid", color="blue", weight=9]; 4742 -> 2231[label="",style="solid", color="blue", weight=3]; 1955[label="yvy165 == yvy167",fontsize=16,color="blue",shape="box"];4743[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4743[label="",style="solid", color="blue", weight=9]; 4743 -> 2232[label="",style="solid", color="blue", weight=3]; 4744[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4744[label="",style="solid", color="blue", weight=9]; 4744 -> 2233[label="",style="solid", color="blue", weight=3]; 4745[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4745[label="",style="solid", color="blue", weight=9]; 4745 -> 2234[label="",style="solid", color="blue", weight=3]; 4746[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4746[label="",style="solid", color="blue", weight=9]; 4746 -> 2235[label="",style="solid", color="blue", weight=3]; 4747[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4747[label="",style="solid", color="blue", weight=9]; 4747 -> 2236[label="",style="solid", color="blue", weight=3]; 4748[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4748[label="",style="solid", color="blue", weight=9]; 4748 -> 2237[label="",style="solid", color="blue", weight=3]; 4749[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4749[label="",style="solid", color="blue", weight=9]; 4749 -> 2238[label="",style="solid", color="blue", weight=3]; 4750[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4750[label="",style="solid", color="blue", weight=9]; 4750 -> 2239[label="",style="solid", color="blue", weight=3]; 4751[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4751[label="",style="solid", color="blue", weight=9]; 4751 -> 2240[label="",style="solid", color="blue", weight=3]; 4752[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4752[label="",style="solid", color="blue", weight=9]; 4752 -> 2241[label="",style="solid", color="blue", weight=3]; 4753[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4753[label="",style="solid", color="blue", weight=9]; 4753 -> 2242[label="",style="solid", color="blue", weight=3]; 4754[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4754[label="",style="solid", color="blue", weight=9]; 4754 -> 2243[label="",style="solid", color="blue", weight=3]; 4755[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4755[label="",style="solid", color="blue", weight=9]; 4755 -> 2244[label="",style="solid", color="blue", weight=3]; 4756[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4756[label="",style="solid", color="blue", weight=9]; 4756 -> 2245[label="",style="solid", color="blue", weight=3]; 1956 -> 1873[label="",style="dashed", color="red", weight=0]; 1956[label="yvy165 < yvy167",fontsize=16,color="magenta"];1956 -> 2246[label="",style="dashed", color="magenta", weight=3]; 1956 -> 2247[label="",style="dashed", color="magenta", weight=3]; 1957 -> 1874[label="",style="dashed", color="red", weight=0]; 1957[label="yvy165 < yvy167",fontsize=16,color="magenta"];1957 -> 2248[label="",style="dashed", color="magenta", weight=3]; 1957 -> 2249[label="",style="dashed", color="magenta", weight=3]; 1958 -> 1875[label="",style="dashed", color="red", weight=0]; 1958[label="yvy165 < yvy167",fontsize=16,color="magenta"];1958 -> 2250[label="",style="dashed", color="magenta", weight=3]; 1958 -> 2251[label="",style="dashed", color="magenta", weight=3]; 1959 -> 1876[label="",style="dashed", color="red", weight=0]; 1959[label="yvy165 < yvy167",fontsize=16,color="magenta"];1959 -> 2252[label="",style="dashed", color="magenta", weight=3]; 1959 -> 2253[label="",style="dashed", color="magenta", weight=3]; 1960 -> 1877[label="",style="dashed", color="red", weight=0]; 1960[label="yvy165 < yvy167",fontsize=16,color="magenta"];1960 -> 2254[label="",style="dashed", color="magenta", weight=3]; 1960 -> 2255[label="",style="dashed", color="magenta", weight=3]; 1961 -> 1878[label="",style="dashed", color="red", weight=0]; 1961[label="yvy165 < yvy167",fontsize=16,color="magenta"];1961 -> 2256[label="",style="dashed", color="magenta", weight=3]; 1961 -> 2257[label="",style="dashed", color="magenta", weight=3]; 1962 -> 1879[label="",style="dashed", color="red", weight=0]; 1962[label="yvy165 < yvy167",fontsize=16,color="magenta"];1962 -> 2258[label="",style="dashed", color="magenta", weight=3]; 1962 -> 2259[label="",style="dashed", color="magenta", weight=3]; 1963 -> 1880[label="",style="dashed", color="red", weight=0]; 1963[label="yvy165 < yvy167",fontsize=16,color="magenta"];1963 -> 2260[label="",style="dashed", color="magenta", weight=3]; 1963 -> 2261[label="",style="dashed", color="magenta", weight=3]; 1964 -> 1881[label="",style="dashed", color="red", weight=0]; 1964[label="yvy165 < yvy167",fontsize=16,color="magenta"];1964 -> 2262[label="",style="dashed", color="magenta", weight=3]; 1964 -> 2263[label="",style="dashed", color="magenta", weight=3]; 1965 -> 1882[label="",style="dashed", color="red", weight=0]; 1965[label="yvy165 < yvy167",fontsize=16,color="magenta"];1965 -> 2264[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2265[label="",style="dashed", color="magenta", weight=3]; 1966 -> 1883[label="",style="dashed", color="red", weight=0]; 1966[label="yvy165 < yvy167",fontsize=16,color="magenta"];1966 -> 2266[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2267[label="",style="dashed", color="magenta", weight=3]; 1967 -> 1884[label="",style="dashed", color="red", weight=0]; 1967[label="yvy165 < yvy167",fontsize=16,color="magenta"];1967 -> 2268[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2269[label="",style="dashed", color="magenta", weight=3]; 1968 -> 1885[label="",style="dashed", color="red", weight=0]; 1968[label="yvy165 < yvy167",fontsize=16,color="magenta"];1968 -> 2270[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2271[label="",style="dashed", color="magenta", weight=3]; 1969 -> 1886[label="",style="dashed", color="red", weight=0]; 1969[label="yvy165 < yvy167",fontsize=16,color="magenta"];1969 -> 2272[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2273[label="",style="dashed", color="magenta", weight=3]; 1970[label="compare1 (yvy233,yvy234) (yvy235,yvy236) (False || yvy238)",fontsize=16,color="black",shape="box"];1970 -> 2274[label="",style="solid", color="black", weight=3]; 1971[label="compare1 (yvy233,yvy234) (yvy235,yvy236) (True || yvy238)",fontsize=16,color="black",shape="box"];1971 -> 2275[label="",style="solid", color="black", weight=3]; 1972[label="primPlusInt (Pos Zero) (FiniteMap.sizeFM yvy54)",fontsize=16,color="burlywood",shape="box"];4757[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1972 -> 4757[label="",style="solid", color="burlywood", weight=9]; 4757 -> 2276[label="",style="solid", color="burlywood", weight=3]; 4758[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];1972 -> 4758[label="",style="solid", color="burlywood", weight=9]; 4758 -> 2277[label="",style="solid", color="burlywood", weight=3]; 1973[label="primPlusInt (Pos yvy11820) (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 (Pos yvy11820) yvy1183 yvy1184) yvy54)",fontsize=16,color="black",shape="box"];1973 -> 2278[label="",style="solid", color="black", weight=3]; 1974[label="primPlusInt (Neg yvy11820) (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 (Neg yvy11820) yvy1183 yvy1184) yvy54)",fontsize=16,color="black",shape="box"];1974 -> 2279[label="",style="solid", color="black", weight=3]; 4124[label="FiniteMap.Branch yvy361 yvy362 (FiniteMap.mkBranchUnbox yvy363 yvy361 yvy364 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy363 yvy361 yvy364 + FiniteMap.mkBranchRight_size yvy363 yvy361 yvy364)) yvy363 yvy364",fontsize=16,color="green",shape="box"];4124 -> 4125[label="",style="dashed", color="green", weight=3]; 3044[label="FiniteMap.sizeFM yvy54",fontsize=16,color="burlywood",shape="triangle"];4759[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3044 -> 4759[label="",style="solid", color="burlywood", weight=9]; 4759 -> 3183[label="",style="solid", color="burlywood", weight=3]; 4760[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];3044 -> 4760[label="",style="solid", color="burlywood", weight=9]; 4760 -> 3184[label="",style="solid", color="burlywood", weight=3]; 3045 -> 3041[label="",style="dashed", color="red", weight=0]; 3045[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54",fontsize=16,color="magenta"];3046 -> 1240[label="",style="dashed", color="red", weight=0]; 3046[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3047 -> 902[label="",style="dashed", color="red", weight=0]; 3047[label="compare yvy311 yvy310 == GT",fontsize=16,color="magenta"];3047 -> 3185[label="",style="dashed", color="magenta", weight=3]; 3047 -> 3186[label="",style="dashed", color="magenta", weight=3]; 2004 -> 3028[label="",style="dashed", color="red", weight=0]; 2004[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"];2004 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2005[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 yvy118 yvy54 yvy118 yvy54 yvy54",fontsize=16,color="burlywood",shape="box"];4761[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4761[label="",style="solid", color="burlywood", weight=9]; 4761 -> 2287[label="",style="solid", color="burlywood", weight=3]; 4762[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4762[label="",style="solid", color="burlywood", weight=9]; 4762 -> 2288[label="",style="solid", color="burlywood", weight=3]; 3034[label="yvy300000",fontsize=16,color="green",shape="box"];3035[label="Succ yvy400100",fontsize=16,color="green",shape="box"];3265[label="Succ (Succ (primPlusNat yvy30700 yvy4001000))",fontsize=16,color="green",shape="box"];3265 -> 3419[label="",style="dashed", color="green", weight=3]; 3266[label="Succ yvy30700",fontsize=16,color="green",shape="box"];3267[label="Succ yvy4001000",fontsize=16,color="green",shape="box"];3268[label="Zero",fontsize=16,color="green",shape="box"];1989 -> 631[label="",style="dashed", color="red", weight=0]; 1989[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];1989 -> 2290[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2291[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2292[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2293[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2294[label="",style="dashed", color="magenta", weight=3]; 4003[label="yvy40",fontsize=16,color="green",shape="box"];4004[label="FiniteMap.Branch yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="green",shape="box"];4005[label="yvy41",fontsize=16,color="green",shape="box"];4006[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];4007[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];2006 -> 631[label="",style="dashed", color="red", weight=0]; 2006[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos Zero) yvy63 yvy64)",fontsize=16,color="magenta"];2006 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2300[label="",style="dashed", color="magenta", weight=3]; 4008[label="yvy40",fontsize=16,color="green",shape="box"];4009[label="FiniteMap.Branch yvy60 yvy61 (Pos Zero) yvy63 yvy64",fontsize=16,color="green",shape="box"];4010[label="yvy41",fontsize=16,color="green",shape="box"];4011[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];4012[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];2020 -> 631[label="",style="dashed", color="red", weight=0]; 2020[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];2020 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2020 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2020 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2020 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2020 -> 2306[label="",style="dashed", color="magenta", weight=3]; 4013[label="yvy40",fontsize=16,color="green",shape="box"];4014[label="FiniteMap.Branch yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="green",shape="box"];4015[label="yvy41",fontsize=16,color="green",shape="box"];4016[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];4017[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];2035 -> 631[label="",style="dashed", color="red", weight=0]; 2035[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg Zero) yvy63 yvy64)",fontsize=16,color="magenta"];2035 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2035 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2035 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2035 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2035 -> 2312[label="",style="dashed", color="magenta", weight=3]; 4018[label="yvy40",fontsize=16,color="green",shape="box"];4019[label="FiniteMap.Branch yvy60 yvy61 (Neg Zero) yvy63 yvy64",fontsize=16,color="green",shape="box"];4020[label="yvy41",fontsize=16,color="green",shape="box"];4021[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];4022[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];2053 -> 902[label="",style="dashed", color="red", weight=0]; 2053[label="compare yvy152 yvy155 == LT",fontsize=16,color="magenta"];2053 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2053 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2054 -> 902[label="",style="dashed", color="red", weight=0]; 2054[label="compare yvy152 yvy155 == LT",fontsize=16,color="magenta"];2054 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2054 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2055 -> 902[label="",style="dashed", color="red", weight=0]; 2055[label="compare yvy152 yvy155 == LT",fontsize=16,color="magenta"];2055 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2055 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2056 -> 902[label="",style="dashed", color="red", weight=0]; 2056[label="compare yvy152 yvy155 == LT",fontsize=16,color="magenta"];2056 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2056 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2057 -> 902[label="",style="dashed", color="red", weight=0]; 2057[label="compare yvy152 yvy155 == LT",fontsize=16,color="magenta"];2057 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2058 -> 902[label="",style="dashed", color="red", weight=0]; 2058[label="compare yvy152 yvy155 == LT",fontsize=16,color="magenta"];2058 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2058 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2059 -> 902[label="",style="dashed", color="red", weight=0]; 2059[label="compare yvy152 yvy155 == LT",fontsize=16,color="magenta"];2059 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2060 -> 902[label="",style="dashed", color="red", weight=0]; 2060[label="compare yvy152 yvy155 == LT",fontsize=16,color="magenta"];2060 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2060 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2061 -> 902[label="",style="dashed", color="red", weight=0]; 2061[label="compare yvy152 yvy155 == LT",fontsize=16,color="magenta"];2061 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2062 -> 902[label="",style="dashed", color="red", weight=0]; 2062[label="compare yvy152 yvy155 == LT",fontsize=16,color="magenta"];2062 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2063 -> 902[label="",style="dashed", color="red", weight=0]; 2063[label="compare yvy152 yvy155 == LT",fontsize=16,color="magenta"];2063 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2063 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2064 -> 902[label="",style="dashed", color="red", weight=0]; 2064[label="compare yvy152 yvy155 == LT",fontsize=16,color="magenta"];2064 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2064 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2065 -> 902[label="",style="dashed", color="red", weight=0]; 2065[label="compare yvy152 yvy155 == LT",fontsize=16,color="magenta"];2065 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2065 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2066 -> 902[label="",style="dashed", color="red", weight=0]; 2066[label="compare yvy152 yvy155 == LT",fontsize=16,color="magenta"];2066 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2349 -> 1570[label="",style="dashed", color="red", weight=0]; 2349[label="yvy153 == yvy156 && yvy154 <= yvy157",fontsize=16,color="magenta"];2349 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2349 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2350[label="yvy153 < yvy156",fontsize=16,color="blue",shape="box"];4763[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4763[label="",style="solid", color="blue", weight=9]; 4763 -> 2355[label="",style="solid", color="blue", weight=3]; 4764[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4764[label="",style="solid", color="blue", weight=9]; 4764 -> 2356[label="",style="solid", color="blue", weight=3]; 4765[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4765[label="",style="solid", color="blue", weight=9]; 4765 -> 2357[label="",style="solid", color="blue", weight=3]; 4766[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4766[label="",style="solid", color="blue", weight=9]; 4766 -> 2358[label="",style="solid", color="blue", weight=3]; 4767[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4767[label="",style="solid", color="blue", weight=9]; 4767 -> 2359[label="",style="solid", color="blue", weight=3]; 4768[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4768[label="",style="solid", color="blue", weight=9]; 4768 -> 2360[label="",style="solid", color="blue", weight=3]; 4769[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4769[label="",style="solid", color="blue", weight=9]; 4769 -> 2361[label="",style="solid", color="blue", weight=3]; 4770[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4770[label="",style="solid", color="blue", weight=9]; 4770 -> 2362[label="",style="solid", color="blue", weight=3]; 4771[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4771[label="",style="solid", color="blue", weight=9]; 4771 -> 2363[label="",style="solid", color="blue", weight=3]; 4772[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4772[label="",style="solid", color="blue", weight=9]; 4772 -> 2364[label="",style="solid", color="blue", weight=3]; 4773[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4773[label="",style="solid", color="blue", weight=9]; 4773 -> 2365[label="",style="solid", color="blue", weight=3]; 4774[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4774[label="",style="solid", color="blue", weight=9]; 4774 -> 2366[label="",style="solid", color="blue", weight=3]; 4775[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4775[label="",style="solid", color="blue", weight=9]; 4775 -> 2367[label="",style="solid", color="blue", weight=3]; 4776[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4776[label="",style="solid", color="blue", weight=9]; 4776 -> 2368[label="",style="solid", color="blue", weight=3]; 2348[label="yvy304 || yvy305",fontsize=16,color="burlywood",shape="triangle"];4777[label="yvy304/False",fontsize=10,color="white",style="solid",shape="box"];2348 -> 4777[label="",style="solid", color="burlywood", weight=9]; 4777 -> 2369[label="",style="solid", color="burlywood", weight=3]; 4778[label="yvy304/True",fontsize=10,color="white",style="solid",shape="box"];2348 -> 4778[label="",style="solid", color="burlywood", weight=9]; 4778 -> 2370[label="",style="solid", color="burlywood", weight=3]; 2069 -> 904[label="",style="dashed", color="red", weight=0]; 2069[label="yvy152 == yvy155",fontsize=16,color="magenta"];2069 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2069 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2070 -> 894[label="",style="dashed", color="red", weight=0]; 2070[label="yvy152 == yvy155",fontsize=16,color="magenta"];2070 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2070 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2071 -> 901[label="",style="dashed", color="red", weight=0]; 2071[label="yvy152 == yvy155",fontsize=16,color="magenta"];2071 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2071 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2072 -> 905[label="",style="dashed", color="red", weight=0]; 2072[label="yvy152 == yvy155",fontsize=16,color="magenta"];2072 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2072 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2073 -> 903[label="",style="dashed", color="red", weight=0]; 2073[label="yvy152 == yvy155",fontsize=16,color="magenta"];2073 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2074 -> 900[label="",style="dashed", color="red", weight=0]; 2074[label="yvy152 == yvy155",fontsize=16,color="magenta"];2074 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2074 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2075 -> 892[label="",style="dashed", color="red", weight=0]; 2075[label="yvy152 == yvy155",fontsize=16,color="magenta"];2075 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2075 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2076 -> 893[label="",style="dashed", color="red", weight=0]; 2076[label="yvy152 == yvy155",fontsize=16,color="magenta"];2076 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2076 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2077 -> 899[label="",style="dashed", color="red", weight=0]; 2077[label="yvy152 == yvy155",fontsize=16,color="magenta"];2077 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2077 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2078 -> 902[label="",style="dashed", color="red", weight=0]; 2078[label="yvy152 == yvy155",fontsize=16,color="magenta"];2078 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2078 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2079 -> 897[label="",style="dashed", color="red", weight=0]; 2079[label="yvy152 == yvy155",fontsize=16,color="magenta"];2079 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2079 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2080 -> 896[label="",style="dashed", color="red", weight=0]; 2080[label="yvy152 == yvy155",fontsize=16,color="magenta"];2080 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2080 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2081 -> 898[label="",style="dashed", color="red", weight=0]; 2081[label="yvy152 == yvy155",fontsize=16,color="magenta"];2081 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2081 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2082 -> 895[label="",style="dashed", color="red", weight=0]; 2082[label="yvy152 == yvy155",fontsize=16,color="magenta"];2082 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2082 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2083[label="compare1 (yvy218,yvy219,yvy220) (yvy221,yvy222,yvy223) yvy225",fontsize=16,color="burlywood",shape="triangle"];4779[label="yvy225/False",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4779[label="",style="solid", color="burlywood", weight=9]; 4779 -> 2399[label="",style="solid", color="burlywood", weight=3]; 4780[label="yvy225/True",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4780[label="",style="solid", color="burlywood", weight=9]; 4780 -> 2400[label="",style="solid", color="burlywood", weight=3]; 2084 -> 2083[label="",style="dashed", color="red", weight=0]; 2084[label="compare1 (yvy218,yvy219,yvy220) (yvy221,yvy222,yvy223) True",fontsize=16,color="magenta"];2084 -> 2401[label="",style="dashed", color="magenta", weight=3]; 1579 -> 892[label="",style="dashed", color="red", weight=0]; 1579[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];1579 -> 2402[label="",style="dashed", color="magenta", weight=3]; 1579 -> 2403[label="",style="dashed", color="magenta", weight=3]; 1580[label="yvy40000 == yvy30000",fontsize=16,color="blue",shape="box"];4781[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4781[label="",style="solid", color="blue", weight=9]; 4781 -> 2404[label="",style="solid", color="blue", weight=3]; 4782[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4782[label="",style="solid", color="blue", weight=9]; 4782 -> 2405[label="",style="solid", color="blue", weight=3]; 4783[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4783[label="",style="solid", color="blue", weight=9]; 4783 -> 2406[label="",style="solid", color="blue", weight=3]; 4784[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4784[label="",style="solid", color="blue", weight=9]; 4784 -> 2407[label="",style="solid", color="blue", weight=3]; 4785[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4785[label="",style="solid", color="blue", weight=9]; 4785 -> 2408[label="",style="solid", color="blue", weight=3]; 4786[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4786[label="",style="solid", color="blue", weight=9]; 4786 -> 2409[label="",style="solid", color="blue", weight=3]; 4787[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4787[label="",style="solid", color="blue", weight=9]; 4787 -> 2410[label="",style="solid", color="blue", weight=3]; 4788[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4788[label="",style="solid", color="blue", weight=9]; 4788 -> 2411[label="",style="solid", color="blue", weight=3]; 4789[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4789[label="",style="solid", color="blue", weight=9]; 4789 -> 2412[label="",style="solid", color="blue", weight=3]; 4790[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4790[label="",style="solid", color="blue", weight=9]; 4790 -> 2413[label="",style="solid", color="blue", weight=3]; 4791[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4791[label="",style="solid", color="blue", weight=9]; 4791 -> 2414[label="",style="solid", color="blue", weight=3]; 4792[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4792[label="",style="solid", color="blue", weight=9]; 4792 -> 2415[label="",style="solid", color="blue", weight=3]; 4793[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4793[label="",style="solid", color="blue", weight=9]; 4793 -> 2416[label="",style="solid", color="blue", weight=3]; 4794[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4794[label="",style="solid", color="blue", weight=9]; 4794 -> 2417[label="",style="solid", color="blue", weight=3]; 1581 -> 1570[label="",style="dashed", color="red", weight=0]; 1581[label="yvy40001 == yvy30001 && yvy40002 == yvy30002",fontsize=16,color="magenta"];1581 -> 2418[label="",style="dashed", color="magenta", weight=3]; 1581 -> 2419[label="",style="dashed", color="magenta", weight=3]; 1582[label="yvy40000 == yvy30000",fontsize=16,color="blue",shape="box"];4795[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4795[label="",style="solid", color="blue", weight=9]; 4795 -> 2420[label="",style="solid", color="blue", weight=3]; 4796[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4796[label="",style="solid", color="blue", weight=9]; 4796 -> 2421[label="",style="solid", color="blue", weight=3]; 4797[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4797[label="",style="solid", color="blue", weight=9]; 4797 -> 2422[label="",style="solid", color="blue", weight=3]; 4798[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4798[label="",style="solid", color="blue", weight=9]; 4798 -> 2423[label="",style="solid", color="blue", weight=3]; 4799[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4799[label="",style="solid", color="blue", weight=9]; 4799 -> 2424[label="",style="solid", color="blue", weight=3]; 4800[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4800[label="",style="solid", color="blue", weight=9]; 4800 -> 2425[label="",style="solid", color="blue", weight=3]; 4801[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4801[label="",style="solid", color="blue", weight=9]; 4801 -> 2426[label="",style="solid", color="blue", weight=3]; 4802[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4802[label="",style="solid", color="blue", weight=9]; 4802 -> 2427[label="",style="solid", color="blue", weight=3]; 4803[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4803[label="",style="solid", color="blue", weight=9]; 4803 -> 2428[label="",style="solid", color="blue", weight=3]; 4804[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4804[label="",style="solid", color="blue", weight=9]; 4804 -> 2429[label="",style="solid", color="blue", weight=3]; 4805[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4805[label="",style="solid", color="blue", weight=9]; 4805 -> 2430[label="",style="solid", color="blue", weight=3]; 4806[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4806[label="",style="solid", color="blue", weight=9]; 4806 -> 2431[label="",style="solid", color="blue", weight=3]; 4807[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4807[label="",style="solid", color="blue", weight=9]; 4807 -> 2432[label="",style="solid", color="blue", weight=3]; 4808[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4808[label="",style="solid", color="blue", weight=9]; 4808 -> 2433[label="",style="solid", color="blue", weight=3]; 1583[label="yvy40001 == yvy30001",fontsize=16,color="blue",shape="box"];4809[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4809[label="",style="solid", color="blue", weight=9]; 4809 -> 2434[label="",style="solid", color="blue", weight=3]; 4810[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4810[label="",style="solid", color="blue", weight=9]; 4810 -> 2435[label="",style="solid", color="blue", weight=3]; 4811[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4811[label="",style="solid", color="blue", weight=9]; 4811 -> 2436[label="",style="solid", color="blue", weight=3]; 4812[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4812[label="",style="solid", color="blue", weight=9]; 4812 -> 2437[label="",style="solid", color="blue", weight=3]; 4813[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4813[label="",style="solid", color="blue", weight=9]; 4813 -> 2438[label="",style="solid", color="blue", weight=3]; 4814[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4814[label="",style="solid", color="blue", weight=9]; 4814 -> 2439[label="",style="solid", color="blue", weight=3]; 4815[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4815[label="",style="solid", color="blue", weight=9]; 4815 -> 2440[label="",style="solid", color="blue", weight=3]; 4816[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4816[label="",style="solid", color="blue", weight=9]; 4816 -> 2441[label="",style="solid", color="blue", weight=3]; 4817[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4817[label="",style="solid", color="blue", weight=9]; 4817 -> 2442[label="",style="solid", color="blue", weight=3]; 4818[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4818[label="",style="solid", color="blue", weight=9]; 4818 -> 2443[label="",style="solid", color="blue", weight=3]; 4819[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4819[label="",style="solid", color="blue", weight=9]; 4819 -> 2444[label="",style="solid", color="blue", weight=3]; 4820[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4820[label="",style="solid", color="blue", weight=9]; 4820 -> 2445[label="",style="solid", color="blue", weight=3]; 4821[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4821[label="",style="solid", color="blue", weight=9]; 4821 -> 2446[label="",style="solid", color="blue", weight=3]; 4822[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4822[label="",style="solid", color="blue", weight=9]; 4822 -> 2447[label="",style="solid", color="blue", weight=3]; 1584[label="yvy40000 == yvy30000",fontsize=16,color="blue",shape="box"];4823[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4823[label="",style="solid", color="blue", weight=9]; 4823 -> 2448[label="",style="solid", color="blue", weight=3]; 4824[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4824[label="",style="solid", color="blue", weight=9]; 4824 -> 2449[label="",style="solid", color="blue", weight=3]; 4825[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4825[label="",style="solid", color="blue", weight=9]; 4825 -> 2450[label="",style="solid", color="blue", weight=3]; 4826[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4826[label="",style="solid", color="blue", weight=9]; 4826 -> 2451[label="",style="solid", color="blue", weight=3]; 4827[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4827[label="",style="solid", color="blue", weight=9]; 4827 -> 2452[label="",style="solid", color="blue", weight=3]; 4828[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4828[label="",style="solid", color="blue", weight=9]; 4828 -> 2453[label="",style="solid", color="blue", weight=3]; 4829[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4829[label="",style="solid", color="blue", weight=9]; 4829 -> 2454[label="",style="solid", color="blue", weight=3]; 4830[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4830[label="",style="solid", color="blue", weight=9]; 4830 -> 2455[label="",style="solid", color="blue", weight=3]; 4831[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4831[label="",style="solid", color="blue", weight=9]; 4831 -> 2456[label="",style="solid", color="blue", weight=3]; 4832[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4832[label="",style="solid", color="blue", weight=9]; 4832 -> 2457[label="",style="solid", color="blue", weight=3]; 4833[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4833[label="",style="solid", color="blue", weight=9]; 4833 -> 2458[label="",style="solid", color="blue", weight=3]; 4834[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4834[label="",style="solid", color="blue", weight=9]; 4834 -> 2459[label="",style="solid", color="blue", weight=3]; 4835[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4835[label="",style="solid", color="blue", weight=9]; 4835 -> 2460[label="",style="solid", color="blue", weight=3]; 4836[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4836[label="",style="solid", color="blue", weight=9]; 4836 -> 2461[label="",style="solid", color="blue", weight=3]; 2085 -> 901[label="",style="dashed", color="red", weight=0]; 2085[label="yvy40000 * yvy30001 == yvy40001 * yvy30000",fontsize=16,color="magenta"];2085 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2085 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2086[label="primEqNat yvy40000 yvy30000",fontsize=16,color="burlywood",shape="triangle"];4837[label="yvy40000/Succ yvy400000",fontsize=10,color="white",style="solid",shape="box"];2086 -> 4837[label="",style="solid", color="burlywood", weight=9]; 4837 -> 2464[label="",style="solid", color="burlywood", weight=3]; 4838[label="yvy40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2086 -> 4838[label="",style="solid", color="burlywood", weight=9]; 4838 -> 2465[label="",style="solid", color="burlywood", weight=3]; 2087 -> 892[label="",style="dashed", color="red", weight=0]; 2087[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2087 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2087 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2088 -> 893[label="",style="dashed", color="red", weight=0]; 2088[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2088 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2088 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2089 -> 894[label="",style="dashed", color="red", weight=0]; 2089[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2089 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2089 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2090 -> 895[label="",style="dashed", color="red", weight=0]; 2090[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2090 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2090 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2091 -> 896[label="",style="dashed", color="red", weight=0]; 2091[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2091 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2091 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2092 -> 897[label="",style="dashed", color="red", weight=0]; 2092[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2092 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2092 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2093 -> 898[label="",style="dashed", color="red", weight=0]; 2093[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2093 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2093 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2094 -> 899[label="",style="dashed", color="red", weight=0]; 2094[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2094 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2095 -> 900[label="",style="dashed", color="red", weight=0]; 2095[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2095 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2095 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2096 -> 901[label="",style="dashed", color="red", weight=0]; 2096[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2096 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2096 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2097 -> 902[label="",style="dashed", color="red", weight=0]; 2097[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2097 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2097 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2098 -> 903[label="",style="dashed", color="red", weight=0]; 2098[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2098 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2098 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2099 -> 904[label="",style="dashed", color="red", weight=0]; 2099[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2099 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2099 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2100 -> 905[label="",style="dashed", color="red", weight=0]; 2100[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2100 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2100 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2101 -> 892[label="",style="dashed", color="red", weight=0]; 2101[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2101 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2101 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2102 -> 893[label="",style="dashed", color="red", weight=0]; 2102[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2102 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2102 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2103 -> 894[label="",style="dashed", color="red", weight=0]; 2103[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2103 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2103 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2104 -> 895[label="",style="dashed", color="red", weight=0]; 2104[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2104 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2104 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2105 -> 896[label="",style="dashed", color="red", weight=0]; 2105[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2105 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2105 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2106 -> 897[label="",style="dashed", color="red", weight=0]; 2106[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2106 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2106 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2107 -> 898[label="",style="dashed", color="red", weight=0]; 2107[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2107 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2107 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2108 -> 899[label="",style="dashed", color="red", weight=0]; 2108[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2108 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2108 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2109 -> 900[label="",style="dashed", color="red", weight=0]; 2109[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2109 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2109 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2110 -> 901[label="",style="dashed", color="red", weight=0]; 2110[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2110 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2110 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2111 -> 902[label="",style="dashed", color="red", weight=0]; 2111[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2111 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2111 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2112 -> 903[label="",style="dashed", color="red", weight=0]; 2112[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2112 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2112 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2113 -> 904[label="",style="dashed", color="red", weight=0]; 2113[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2113 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2113 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2114 -> 905[label="",style="dashed", color="red", weight=0]; 2114[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2114 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2114 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2115 -> 892[label="",style="dashed", color="red", weight=0]; 2115[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2115 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2115 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2116 -> 893[label="",style="dashed", color="red", weight=0]; 2116[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2116 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2116 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2117 -> 894[label="",style="dashed", color="red", weight=0]; 2117[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2117 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2117 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2118 -> 895[label="",style="dashed", color="red", weight=0]; 2118[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2118 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2118 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2119 -> 896[label="",style="dashed", color="red", weight=0]; 2119[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2119 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2119 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2120 -> 897[label="",style="dashed", color="red", weight=0]; 2120[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2120 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2121 -> 898[label="",style="dashed", color="red", weight=0]; 2121[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2121 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2121 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2122 -> 899[label="",style="dashed", color="red", weight=0]; 2122[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2122 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2122 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2123 -> 900[label="",style="dashed", color="red", weight=0]; 2123[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2123 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2123 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2124 -> 901[label="",style="dashed", color="red", weight=0]; 2124[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2124 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2124 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2125 -> 902[label="",style="dashed", color="red", weight=0]; 2125[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2125 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2125 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2126 -> 903[label="",style="dashed", color="red", weight=0]; 2126[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2126 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2126 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2127 -> 904[label="",style="dashed", color="red", weight=0]; 2127[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2127 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2127 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2128 -> 905[label="",style="dashed", color="red", weight=0]; 2128[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2128 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2128 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2129 -> 901[label="",style="dashed", color="red", weight=0]; 2129[label="yvy40000 * yvy30001 == yvy40001 * yvy30000",fontsize=16,color="magenta"];2129 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2129 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2130[label="primEqInt (Pos (Succ yvy400000)) (Pos yvy30000)",fontsize=16,color="burlywood",shape="box"];4839[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2130 -> 4839[label="",style="solid", color="burlywood", weight=9]; 4839 -> 2552[label="",style="solid", color="burlywood", weight=3]; 4840[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2130 -> 4840[label="",style="solid", color="burlywood", weight=9]; 4840 -> 2553[label="",style="solid", color="burlywood", weight=3]; 2131[label="primEqInt (Pos (Succ yvy400000)) (Neg yvy30000)",fontsize=16,color="black",shape="box"];2131 -> 2554[label="",style="solid", color="black", weight=3]; 2132[label="primEqInt (Pos Zero) (Pos yvy30000)",fontsize=16,color="burlywood",shape="box"];4841[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2132 -> 4841[label="",style="solid", color="burlywood", weight=9]; 4841 -> 2555[label="",style="solid", color="burlywood", weight=3]; 4842[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2132 -> 4842[label="",style="solid", color="burlywood", weight=9]; 4842 -> 2556[label="",style="solid", color="burlywood", weight=3]; 2133[label="primEqInt (Pos Zero) (Neg yvy30000)",fontsize=16,color="burlywood",shape="box"];4843[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2133 -> 4843[label="",style="solid", color="burlywood", weight=9]; 4843 -> 2557[label="",style="solid", color="burlywood", weight=3]; 4844[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2133 -> 4844[label="",style="solid", color="burlywood", weight=9]; 4844 -> 2558[label="",style="solid", color="burlywood", weight=3]; 2134[label="primEqInt (Neg (Succ yvy400000)) (Pos yvy30000)",fontsize=16,color="black",shape="box"];2134 -> 2559[label="",style="solid", color="black", weight=3]; 2135[label="primEqInt (Neg (Succ yvy400000)) (Neg yvy30000)",fontsize=16,color="burlywood",shape="box"];4845[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2135 -> 4845[label="",style="solid", color="burlywood", weight=9]; 4845 -> 2560[label="",style="solid", color="burlywood", weight=3]; 4846[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2135 -> 4846[label="",style="solid", color="burlywood", weight=9]; 4846 -> 2561[label="",style="solid", color="burlywood", weight=3]; 2136[label="primEqInt (Neg Zero) (Pos yvy30000)",fontsize=16,color="burlywood",shape="box"];4847[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2136 -> 4847[label="",style="solid", color="burlywood", weight=9]; 4847 -> 2562[label="",style="solid", color="burlywood", weight=3]; 4848[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2136 -> 4848[label="",style="solid", color="burlywood", weight=9]; 4848 -> 2563[label="",style="solid", color="burlywood", weight=3]; 2137[label="primEqInt (Neg Zero) (Neg yvy30000)",fontsize=16,color="burlywood",shape="box"];4849[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2137 -> 4849[label="",style="solid", color="burlywood", weight=9]; 4849 -> 2564[label="",style="solid", color="burlywood", weight=3]; 4850[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2137 -> 4850[label="",style="solid", color="burlywood", weight=9]; 4850 -> 2565[label="",style="solid", color="burlywood", weight=3]; 1585[label="yvy40001 == yvy30001",fontsize=16,color="blue",shape="box"];4851[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1585 -> 4851[label="",style="solid", color="blue", weight=9]; 4851 -> 2566[label="",style="solid", color="blue", weight=3]; 4852[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1585 -> 4852[label="",style="solid", color="blue", weight=9]; 4852 -> 2567[label="",style="solid", color="blue", weight=3]; 1586[label="yvy40000 == yvy30000",fontsize=16,color="blue",shape="box"];4853[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4853[label="",style="solid", color="blue", weight=9]; 4853 -> 2568[label="",style="solid", color="blue", weight=3]; 4854[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4854[label="",style="solid", color="blue", weight=9]; 4854 -> 2569[label="",style="solid", color="blue", weight=3]; 2138[label="yvy30000",fontsize=16,color="green",shape="box"];2139[label="yvy40000",fontsize=16,color="green",shape="box"];2140 -> 2570[label="",style="dashed", color="red", weight=0]; 2140[label="compare yvy89 yvy90 /= GT",fontsize=16,color="magenta"];2140 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2141[label="False <= yvy90",fontsize=16,color="burlywood",shape="box"];4855[label="yvy90/False",fontsize=10,color="white",style="solid",shape="box"];2141 -> 4855[label="",style="solid", color="burlywood", weight=9]; 4855 -> 2579[label="",style="solid", color="burlywood", weight=3]; 4856[label="yvy90/True",fontsize=10,color="white",style="solid",shape="box"];2141 -> 4856[label="",style="solid", color="burlywood", weight=9]; 4856 -> 2580[label="",style="solid", color="burlywood", weight=3]; 2142[label="True <= yvy90",fontsize=16,color="burlywood",shape="box"];4857[label="yvy90/False",fontsize=10,color="white",style="solid",shape="box"];2142 -> 4857[label="",style="solid", color="burlywood", weight=9]; 4857 -> 2581[label="",style="solid", color="burlywood", weight=3]; 4858[label="yvy90/True",fontsize=10,color="white",style="solid",shape="box"];2142 -> 4858[label="",style="solid", color="burlywood", weight=9]; 4858 -> 2582[label="",style="solid", color="burlywood", weight=3]; 2143 -> 2570[label="",style="dashed", color="red", weight=0]; 2143[label="compare yvy89 yvy90 /= GT",fontsize=16,color="magenta"];2143 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2144 -> 2570[label="",style="dashed", color="red", weight=0]; 2144[label="compare yvy89 yvy90 /= GT",fontsize=16,color="magenta"];2144 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2145 -> 2570[label="",style="dashed", color="red", weight=0]; 2145[label="compare yvy89 yvy90 /= GT",fontsize=16,color="magenta"];2145 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2146 -> 2570[label="",style="dashed", color="red", weight=0]; 2146[label="compare yvy89 yvy90 /= GT",fontsize=16,color="magenta"];2146 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2147 -> 2570[label="",style="dashed", color="red", weight=0]; 2147[label="compare yvy89 yvy90 /= GT",fontsize=16,color="magenta"];2147 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2148[label="(yvy890,yvy891,yvy892) <= yvy90",fontsize=16,color="burlywood",shape="box"];4859[label="yvy90/(yvy900,yvy901,yvy902)",fontsize=10,color="white",style="solid",shape="box"];2148 -> 4859[label="",style="solid", color="burlywood", weight=9]; 4859 -> 2583[label="",style="solid", color="burlywood", weight=3]; 2149[label="Nothing <= yvy90",fontsize=16,color="burlywood",shape="box"];4860[label="yvy90/Nothing",fontsize=10,color="white",style="solid",shape="box"];2149 -> 4860[label="",style="solid", color="burlywood", weight=9]; 4860 -> 2584[label="",style="solid", color="burlywood", weight=3]; 4861[label="yvy90/Just yvy900",fontsize=10,color="white",style="solid",shape="box"];2149 -> 4861[label="",style="solid", color="burlywood", weight=9]; 4861 -> 2585[label="",style="solid", color="burlywood", weight=3]; 2150[label="Just yvy890 <= yvy90",fontsize=16,color="burlywood",shape="box"];4862[label="yvy90/Nothing",fontsize=10,color="white",style="solid",shape="box"];2150 -> 4862[label="",style="solid", color="burlywood", weight=9]; 4862 -> 2586[label="",style="solid", color="burlywood", weight=3]; 4863[label="yvy90/Just yvy900",fontsize=10,color="white",style="solid",shape="box"];2150 -> 4863[label="",style="solid", color="burlywood", weight=9]; 4863 -> 2587[label="",style="solid", color="burlywood", weight=3]; 2151[label="LT <= yvy90",fontsize=16,color="burlywood",shape="box"];4864[label="yvy90/LT",fontsize=10,color="white",style="solid",shape="box"];2151 -> 4864[label="",style="solid", color="burlywood", weight=9]; 4864 -> 2588[label="",style="solid", color="burlywood", weight=3]; 4865[label="yvy90/EQ",fontsize=10,color="white",style="solid",shape="box"];2151 -> 4865[label="",style="solid", color="burlywood", weight=9]; 4865 -> 2589[label="",style="solid", color="burlywood", weight=3]; 4866[label="yvy90/GT",fontsize=10,color="white",style="solid",shape="box"];2151 -> 4866[label="",style="solid", color="burlywood", weight=9]; 4866 -> 2590[label="",style="solid", color="burlywood", weight=3]; 2152[label="EQ <= yvy90",fontsize=16,color="burlywood",shape="box"];4867[label="yvy90/LT",fontsize=10,color="white",style="solid",shape="box"];2152 -> 4867[label="",style="solid", color="burlywood", weight=9]; 4867 -> 2591[label="",style="solid", color="burlywood", weight=3]; 4868[label="yvy90/EQ",fontsize=10,color="white",style="solid",shape="box"];2152 -> 4868[label="",style="solid", color="burlywood", weight=9]; 4868 -> 2592[label="",style="solid", color="burlywood", weight=3]; 4869[label="yvy90/GT",fontsize=10,color="white",style="solid",shape="box"];2152 -> 4869[label="",style="solid", color="burlywood", weight=9]; 4869 -> 2593[label="",style="solid", color="burlywood", weight=3]; 2153[label="GT <= yvy90",fontsize=16,color="burlywood",shape="box"];4870[label="yvy90/LT",fontsize=10,color="white",style="solid",shape="box"];2153 -> 4870[label="",style="solid", color="burlywood", weight=9]; 4870 -> 2594[label="",style="solid", color="burlywood", weight=3]; 4871[label="yvy90/EQ",fontsize=10,color="white",style="solid",shape="box"];2153 -> 4871[label="",style="solid", color="burlywood", weight=9]; 4871 -> 2595[label="",style="solid", color="burlywood", weight=3]; 4872[label="yvy90/GT",fontsize=10,color="white",style="solid",shape="box"];2153 -> 4872[label="",style="solid", color="burlywood", weight=9]; 4872 -> 2596[label="",style="solid", color="burlywood", weight=3]; 2154 -> 2570[label="",style="dashed", color="red", weight=0]; 2154[label="compare yvy89 yvy90 /= GT",fontsize=16,color="magenta"];2154 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2155 -> 2570[label="",style="dashed", color="red", weight=0]; 2155[label="compare yvy89 yvy90 /= GT",fontsize=16,color="magenta"];2155 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2156[label="Left yvy890 <= yvy90",fontsize=16,color="burlywood",shape="box"];4873[label="yvy90/Left yvy900",fontsize=10,color="white",style="solid",shape="box"];2156 -> 4873[label="",style="solid", color="burlywood", weight=9]; 4873 -> 2597[label="",style="solid", color="burlywood", weight=3]; 4874[label="yvy90/Right yvy900",fontsize=10,color="white",style="solid",shape="box"];2156 -> 4874[label="",style="solid", color="burlywood", weight=9]; 4874 -> 2598[label="",style="solid", color="burlywood", weight=3]; 2157[label="Right yvy890 <= yvy90",fontsize=16,color="burlywood",shape="box"];4875[label="yvy90/Left yvy900",fontsize=10,color="white",style="solid",shape="box"];2157 -> 4875[label="",style="solid", color="burlywood", weight=9]; 4875 -> 2599[label="",style="solid", color="burlywood", weight=3]; 4876[label="yvy90/Right yvy900",fontsize=10,color="white",style="solid",shape="box"];2157 -> 4876[label="",style="solid", color="burlywood", weight=9]; 4876 -> 2600[label="",style="solid", color="burlywood", weight=3]; 2158[label="(yvy890,yvy891) <= yvy90",fontsize=16,color="burlywood",shape="box"];4877[label="yvy90/(yvy900,yvy901)",fontsize=10,color="white",style="solid",shape="box"];2158 -> 4877[label="",style="solid", color="burlywood", weight=9]; 4877 -> 2601[label="",style="solid", color="burlywood", weight=3]; 2159[label="compare0 (Just yvy189) (Just yvy190) True",fontsize=16,color="black",shape="box"];2159 -> 2602[label="",style="solid", color="black", weight=3]; 2160[label="yvy96",fontsize=16,color="green",shape="box"];2161[label="yvy97",fontsize=16,color="green",shape="box"];2162[label="yvy96",fontsize=16,color="green",shape="box"];2163[label="yvy97",fontsize=16,color="green",shape="box"];2164[label="yvy96",fontsize=16,color="green",shape="box"];2165[label="yvy97",fontsize=16,color="green",shape="box"];2166[label="yvy96",fontsize=16,color="green",shape="box"];2167[label="yvy97",fontsize=16,color="green",shape="box"];2168[label="yvy96",fontsize=16,color="green",shape="box"];2169[label="yvy97",fontsize=16,color="green",shape="box"];2170[label="yvy96",fontsize=16,color="green",shape="box"];2171[label="yvy97",fontsize=16,color="green",shape="box"];2172[label="yvy96",fontsize=16,color="green",shape="box"];2173[label="yvy97",fontsize=16,color="green",shape="box"];2174[label="yvy96",fontsize=16,color="green",shape="box"];2175[label="yvy97",fontsize=16,color="green",shape="box"];2176[label="yvy96",fontsize=16,color="green",shape="box"];2177[label="yvy97",fontsize=16,color="green",shape="box"];2178[label="yvy96",fontsize=16,color="green",shape="box"];2179[label="yvy97",fontsize=16,color="green",shape="box"];2180[label="yvy96",fontsize=16,color="green",shape="box"];2181[label="yvy97",fontsize=16,color="green",shape="box"];2182[label="yvy96",fontsize=16,color="green",shape="box"];2183[label="yvy97",fontsize=16,color="green",shape="box"];2184[label="yvy96",fontsize=16,color="green",shape="box"];2185[label="yvy97",fontsize=16,color="green",shape="box"];2186[label="yvy96",fontsize=16,color="green",shape="box"];2187[label="yvy97",fontsize=16,color="green",shape="box"];2188[label="compare0 (Left yvy196) (Left yvy197) True",fontsize=16,color="black",shape="box"];2188 -> 2603[label="",style="solid", color="black", weight=3]; 2189[label="yvy103",fontsize=16,color="green",shape="box"];2190[label="yvy104",fontsize=16,color="green",shape="box"];2191[label="yvy103",fontsize=16,color="green",shape="box"];2192[label="yvy104",fontsize=16,color="green",shape="box"];2193[label="yvy103",fontsize=16,color="green",shape="box"];2194[label="yvy104",fontsize=16,color="green",shape="box"];2195[label="yvy103",fontsize=16,color="green",shape="box"];2196[label="yvy104",fontsize=16,color="green",shape="box"];2197[label="yvy103",fontsize=16,color="green",shape="box"];2198[label="yvy104",fontsize=16,color="green",shape="box"];2199[label="yvy103",fontsize=16,color="green",shape="box"];2200[label="yvy104",fontsize=16,color="green",shape="box"];2201[label="yvy103",fontsize=16,color="green",shape="box"];2202[label="yvy104",fontsize=16,color="green",shape="box"];2203[label="yvy103",fontsize=16,color="green",shape="box"];2204[label="yvy104",fontsize=16,color="green",shape="box"];2205[label="yvy103",fontsize=16,color="green",shape="box"];2206[label="yvy104",fontsize=16,color="green",shape="box"];2207[label="yvy103",fontsize=16,color="green",shape="box"];2208[label="yvy104",fontsize=16,color="green",shape="box"];2209[label="yvy103",fontsize=16,color="green",shape="box"];2210[label="yvy104",fontsize=16,color="green",shape="box"];2211[label="yvy103",fontsize=16,color="green",shape="box"];2212[label="yvy104",fontsize=16,color="green",shape="box"];2213[label="yvy103",fontsize=16,color="green",shape="box"];2214[label="yvy104",fontsize=16,color="green",shape="box"];2215[label="yvy103",fontsize=16,color="green",shape="box"];2216[label="yvy104",fontsize=16,color="green",shape="box"];2217[label="compare0 (Right yvy205) (Right yvy206) True",fontsize=16,color="black",shape="box"];2217 -> 2604[label="",style="solid", color="black", weight=3]; 2218 -> 1891[label="",style="dashed", color="red", weight=0]; 2218[label="yvy166 <= yvy168",fontsize=16,color="magenta"];2218 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2218 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2219 -> 1892[label="",style="dashed", color="red", weight=0]; 2219[label="yvy166 <= yvy168",fontsize=16,color="magenta"];2219 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2219 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2220 -> 1893[label="",style="dashed", color="red", weight=0]; 2220[label="yvy166 <= yvy168",fontsize=16,color="magenta"];2220 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2220 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2221 -> 1894[label="",style="dashed", color="red", weight=0]; 2221[label="yvy166 <= yvy168",fontsize=16,color="magenta"];2221 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2221 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2222 -> 1895[label="",style="dashed", color="red", weight=0]; 2222[label="yvy166 <= yvy168",fontsize=16,color="magenta"];2222 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2222 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2223 -> 1896[label="",style="dashed", color="red", weight=0]; 2223[label="yvy166 <= yvy168",fontsize=16,color="magenta"];2223 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2223 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2224 -> 1897[label="",style="dashed", color="red", weight=0]; 2224[label="yvy166 <= yvy168",fontsize=16,color="magenta"];2224 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2224 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2225 -> 1898[label="",style="dashed", color="red", weight=0]; 2225[label="yvy166 <= yvy168",fontsize=16,color="magenta"];2225 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2225 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2226 -> 1899[label="",style="dashed", color="red", weight=0]; 2226[label="yvy166 <= yvy168",fontsize=16,color="magenta"];2226 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2226 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2227 -> 1900[label="",style="dashed", color="red", weight=0]; 2227[label="yvy166 <= yvy168",fontsize=16,color="magenta"];2227 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2227 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2228 -> 1901[label="",style="dashed", color="red", weight=0]; 2228[label="yvy166 <= yvy168",fontsize=16,color="magenta"];2228 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2228 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2229 -> 1902[label="",style="dashed", color="red", weight=0]; 2229[label="yvy166 <= yvy168",fontsize=16,color="magenta"];2229 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2229 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2230 -> 1903[label="",style="dashed", color="red", weight=0]; 2230[label="yvy166 <= yvy168",fontsize=16,color="magenta"];2230 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2230 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2231 -> 1904[label="",style="dashed", color="red", weight=0]; 2231[label="yvy166 <= yvy168",fontsize=16,color="magenta"];2231 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2231 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2232 -> 904[label="",style="dashed", color="red", weight=0]; 2232[label="yvy165 == yvy167",fontsize=16,color="magenta"];2232 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2232 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2233 -> 894[label="",style="dashed", color="red", weight=0]; 2233[label="yvy165 == yvy167",fontsize=16,color="magenta"];2233 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2233 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2234 -> 901[label="",style="dashed", color="red", weight=0]; 2234[label="yvy165 == yvy167",fontsize=16,color="magenta"];2234 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2234 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2235 -> 905[label="",style="dashed", color="red", weight=0]; 2235[label="yvy165 == yvy167",fontsize=16,color="magenta"];2235 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2235 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2236 -> 903[label="",style="dashed", color="red", weight=0]; 2236[label="yvy165 == yvy167",fontsize=16,color="magenta"];2236 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2236 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2237 -> 900[label="",style="dashed", color="red", weight=0]; 2237[label="yvy165 == yvy167",fontsize=16,color="magenta"];2237 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2237 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2238 -> 892[label="",style="dashed", color="red", weight=0]; 2238[label="yvy165 == yvy167",fontsize=16,color="magenta"];2238 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2238 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2239 -> 893[label="",style="dashed", color="red", weight=0]; 2239[label="yvy165 == yvy167",fontsize=16,color="magenta"];2239 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2239 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2240 -> 899[label="",style="dashed", color="red", weight=0]; 2240[label="yvy165 == yvy167",fontsize=16,color="magenta"];2240 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2240 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2241 -> 902[label="",style="dashed", color="red", weight=0]; 2241[label="yvy165 == yvy167",fontsize=16,color="magenta"];2241 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2241 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2242 -> 897[label="",style="dashed", color="red", weight=0]; 2242[label="yvy165 == yvy167",fontsize=16,color="magenta"];2242 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2242 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2243 -> 896[label="",style="dashed", color="red", weight=0]; 2243[label="yvy165 == yvy167",fontsize=16,color="magenta"];2243 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2243 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2244 -> 898[label="",style="dashed", color="red", weight=0]; 2244[label="yvy165 == yvy167",fontsize=16,color="magenta"];2244 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2244 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2245 -> 895[label="",style="dashed", color="red", weight=0]; 2245[label="yvy165 == yvy167",fontsize=16,color="magenta"];2245 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2245 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2246[label="yvy165",fontsize=16,color="green",shape="box"];2247[label="yvy167",fontsize=16,color="green",shape="box"];2248[label="yvy165",fontsize=16,color="green",shape="box"];2249[label="yvy167",fontsize=16,color="green",shape="box"];2250[label="yvy165",fontsize=16,color="green",shape="box"];2251[label="yvy167",fontsize=16,color="green",shape="box"];2252[label="yvy165",fontsize=16,color="green",shape="box"];2253[label="yvy167",fontsize=16,color="green",shape="box"];2254[label="yvy165",fontsize=16,color="green",shape="box"];2255[label="yvy167",fontsize=16,color="green",shape="box"];2256[label="yvy165",fontsize=16,color="green",shape="box"];2257[label="yvy167",fontsize=16,color="green",shape="box"];2258[label="yvy165",fontsize=16,color="green",shape="box"];2259[label="yvy167",fontsize=16,color="green",shape="box"];2260[label="yvy165",fontsize=16,color="green",shape="box"];2261[label="yvy167",fontsize=16,color="green",shape="box"];2262[label="yvy165",fontsize=16,color="green",shape="box"];2263[label="yvy167",fontsize=16,color="green",shape="box"];2264[label="yvy165",fontsize=16,color="green",shape="box"];2265[label="yvy167",fontsize=16,color="green",shape="box"];2266[label="yvy165",fontsize=16,color="green",shape="box"];2267[label="yvy167",fontsize=16,color="green",shape="box"];2268[label="yvy165",fontsize=16,color="green",shape="box"];2269[label="yvy167",fontsize=16,color="green",shape="box"];2270[label="yvy165",fontsize=16,color="green",shape="box"];2271[label="yvy167",fontsize=16,color="green",shape="box"];2272[label="yvy165",fontsize=16,color="green",shape="box"];2273[label="yvy167",fontsize=16,color="green",shape="box"];2274[label="compare1 (yvy233,yvy234) (yvy235,yvy236) yvy238",fontsize=16,color="burlywood",shape="triangle"];4878[label="yvy238/False",fontsize=10,color="white",style="solid",shape="box"];2274 -> 4878[label="",style="solid", color="burlywood", weight=9]; 4878 -> 2661[label="",style="solid", color="burlywood", weight=3]; 4879[label="yvy238/True",fontsize=10,color="white",style="solid",shape="box"];2274 -> 4879[label="",style="solid", color="burlywood", weight=9]; 4879 -> 2662[label="",style="solid", color="burlywood", weight=3]; 2275 -> 2274[label="",style="dashed", color="red", weight=0]; 2275[label="compare1 (yvy233,yvy234) (yvy235,yvy236) True",fontsize=16,color="magenta"];2275 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2276[label="primPlusInt (Pos Zero) (FiniteMap.sizeFM FiniteMap.EmptyFM)",fontsize=16,color="black",shape="box"];2276 -> 2664[label="",style="solid", color="black", weight=3]; 2277[label="primPlusInt (Pos Zero) (FiniteMap.sizeFM (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544))",fontsize=16,color="black",shape="box"];2277 -> 2665[label="",style="solid", color="black", weight=3]; 2278[label="primPlusInt (Pos yvy11820) (FiniteMap.sizeFM yvy54)",fontsize=16,color="burlywood",shape="box"];4880[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2278 -> 4880[label="",style="solid", color="burlywood", weight=9]; 4880 -> 2666[label="",style="solid", color="burlywood", weight=3]; 4881[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2278 -> 4881[label="",style="solid", color="burlywood", weight=9]; 4881 -> 2667[label="",style="solid", color="burlywood", weight=3]; 2279[label="primPlusInt (Neg yvy11820) (FiniteMap.sizeFM yvy54)",fontsize=16,color="burlywood",shape="box"];4882[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2279 -> 4882[label="",style="solid", color="burlywood", weight=9]; 4882 -> 2668[label="",style="solid", color="burlywood", weight=3]; 4883[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2279 -> 4883[label="",style="solid", color="burlywood", weight=9]; 4883 -> 2669[label="",style="solid", color="burlywood", weight=3]; 4125[label="FiniteMap.mkBranchUnbox yvy363 yvy361 yvy364 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy363 yvy361 yvy364 + FiniteMap.mkBranchRight_size yvy363 yvy361 yvy364)",fontsize=16,color="black",shape="box"];4125 -> 4126[label="",style="solid", color="black", weight=3]; 3183[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3183 -> 3252[label="",style="solid", color="black", weight=3]; 3184[label="FiniteMap.sizeFM (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];3184 -> 3253[label="",style="solid", color="black", weight=3]; 3041[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54",fontsize=16,color="black",shape="triangle"];3041 -> 3050[label="",style="solid", color="black", weight=3]; 3185[label="GT",fontsize=16,color="green",shape="box"];3186 -> 314[label="",style="dashed", color="red", weight=0]; 3186[label="compare yvy311 yvy310",fontsize=16,color="magenta"];3186 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3186 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3029 -> 3036[label="",style="dashed", color="red", weight=0]; 3029[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54",fontsize=16,color="magenta"];3029 -> 3041[label="",style="dashed", color="magenta", weight=3]; 3029 -> 3042[label="",style="dashed", color="magenta", weight=3]; 3028[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 yvy308",fontsize=16,color="burlywood",shape="triangle"];4884[label="yvy308/False",fontsize=10,color="white",style="solid",shape="box"];3028 -> 4884[label="",style="solid", color="burlywood", weight=9]; 4884 -> 3048[label="",style="solid", color="burlywood", weight=3]; 4885[label="yvy308/True",fontsize=10,color="white",style="solid",shape="box"];3028 -> 4885[label="",style="solid", color="burlywood", weight=9]; 4885 -> 3049[label="",style="solid", color="burlywood", weight=3]; 2287[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 yvy118 FiniteMap.EmptyFM yvy118 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2287 -> 2678[label="",style="solid", color="black", weight=3]; 2288[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"];2288 -> 2679[label="",style="solid", color="black", weight=3]; 3419 -> 3043[label="",style="dashed", color="red", weight=0]; 3419[label="primPlusNat yvy30700 yvy4001000",fontsize=16,color="magenta"];3419 -> 3550[label="",style="dashed", color="magenta", weight=3]; 3419 -> 3551[label="",style="dashed", color="magenta", weight=3]; 2290[label="yvy60",fontsize=16,color="green",shape="box"];2291[label="yvy63",fontsize=16,color="green",shape="box"];2292[label="yvy64",fontsize=16,color="green",shape="box"];2293[label="yvy61",fontsize=16,color="green",shape="box"];2294[label="Pos (Succ yvy6200)",fontsize=16,color="green",shape="box"];2296[label="yvy60",fontsize=16,color="green",shape="box"];2297[label="yvy63",fontsize=16,color="green",shape="box"];2298[label="yvy64",fontsize=16,color="green",shape="box"];2299[label="yvy61",fontsize=16,color="green",shape="box"];2300[label="Pos Zero",fontsize=16,color="green",shape="box"];2302[label="yvy60",fontsize=16,color="green",shape="box"];2303[label="yvy63",fontsize=16,color="green",shape="box"];2304[label="yvy64",fontsize=16,color="green",shape="box"];2305[label="yvy61",fontsize=16,color="green",shape="box"];2306[label="Neg (Succ yvy6200)",fontsize=16,color="green",shape="box"];2308[label="yvy60",fontsize=16,color="green",shape="box"];2309[label="yvy63",fontsize=16,color="green",shape="box"];2310[label="yvy64",fontsize=16,color="green",shape="box"];2311[label="yvy61",fontsize=16,color="green",shape="box"];2312[label="Neg Zero",fontsize=16,color="green",shape="box"];2318[label="LT",fontsize=16,color="green",shape="box"];2319 -> 312[label="",style="dashed", color="red", weight=0]; 2319[label="compare yvy152 yvy155",fontsize=16,color="magenta"];2319 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2319 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2320[label="LT",fontsize=16,color="green",shape="box"];2321 -> 313[label="",style="dashed", color="red", weight=0]; 2321[label="compare yvy152 yvy155",fontsize=16,color="magenta"];2321 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2321 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2322[label="LT",fontsize=16,color="green",shape="box"];2323 -> 314[label="",style="dashed", color="red", weight=0]; 2323[label="compare yvy152 yvy155",fontsize=16,color="magenta"];2323 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2323 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2324[label="LT",fontsize=16,color="green",shape="box"];2325 -> 315[label="",style="dashed", color="red", weight=0]; 2325[label="compare yvy152 yvy155",fontsize=16,color="magenta"];2325 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2325 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2326[label="LT",fontsize=16,color="green",shape="box"];2327 -> 316[label="",style="dashed", color="red", weight=0]; 2327[label="compare yvy152 yvy155",fontsize=16,color="magenta"];2327 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2327 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2328[label="LT",fontsize=16,color="green",shape="box"];2329 -> 317[label="",style="dashed", color="red", weight=0]; 2329[label="compare yvy152 yvy155",fontsize=16,color="magenta"];2329 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2330[label="LT",fontsize=16,color="green",shape="box"];2331 -> 122[label="",style="dashed", color="red", weight=0]; 2331[label="compare yvy152 yvy155",fontsize=16,color="magenta"];2331 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2332[label="LT",fontsize=16,color="green",shape="box"];2333 -> 319[label="",style="dashed", color="red", weight=0]; 2333[label="compare yvy152 yvy155",fontsize=16,color="magenta"];2333 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2334[label="LT",fontsize=16,color="green",shape="box"];2335 -> 320[label="",style="dashed", color="red", weight=0]; 2335[label="compare yvy152 yvy155",fontsize=16,color="magenta"];2335 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2335 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2336[label="LT",fontsize=16,color="green",shape="box"];2337 -> 321[label="",style="dashed", color="red", weight=0]; 2337[label="compare yvy152 yvy155",fontsize=16,color="magenta"];2337 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2338[label="LT",fontsize=16,color="green",shape="box"];2339 -> 322[label="",style="dashed", color="red", weight=0]; 2339[label="compare yvy152 yvy155",fontsize=16,color="magenta"];2339 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2340[label="LT",fontsize=16,color="green",shape="box"];2341 -> 323[label="",style="dashed", color="red", weight=0]; 2341[label="compare yvy152 yvy155",fontsize=16,color="magenta"];2341 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2342[label="LT",fontsize=16,color="green",shape="box"];2343 -> 324[label="",style="dashed", color="red", weight=0]; 2343[label="compare yvy152 yvy155",fontsize=16,color="magenta"];2343 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2343 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2344[label="LT",fontsize=16,color="green",shape="box"];2345 -> 325[label="",style="dashed", color="red", weight=0]; 2345[label="compare yvy152 yvy155",fontsize=16,color="magenta"];2345 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2345 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2353[label="yvy154 <= yvy157",fontsize=16,color="blue",shape="box"];4886[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4886[label="",style="solid", color="blue", weight=9]; 4886 -> 2743[label="",style="solid", color="blue", weight=3]; 4887[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4887[label="",style="solid", color="blue", weight=9]; 4887 -> 2744[label="",style="solid", color="blue", weight=3]; 4888[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4888[label="",style="solid", color="blue", weight=9]; 4888 -> 2745[label="",style="solid", color="blue", weight=3]; 4889[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4889[label="",style="solid", color="blue", weight=9]; 4889 -> 2746[label="",style="solid", color="blue", weight=3]; 4890[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4890[label="",style="solid", color="blue", weight=9]; 4890 -> 2747[label="",style="solid", color="blue", weight=3]; 4891[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4891[label="",style="solid", color="blue", weight=9]; 4891 -> 2748[label="",style="solid", color="blue", weight=3]; 4892[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4892[label="",style="solid", color="blue", weight=9]; 4892 -> 2749[label="",style="solid", color="blue", weight=3]; 4893[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4893[label="",style="solid", color="blue", weight=9]; 4893 -> 2750[label="",style="solid", color="blue", weight=3]; 4894[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4894[label="",style="solid", color="blue", weight=9]; 4894 -> 2751[label="",style="solid", color="blue", weight=3]; 4895[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4895[label="",style="solid", color="blue", weight=9]; 4895 -> 2752[label="",style="solid", color="blue", weight=3]; 4896[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4896[label="",style="solid", color="blue", weight=9]; 4896 -> 2753[label="",style="solid", color="blue", weight=3]; 4897[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4897[label="",style="solid", color="blue", weight=9]; 4897 -> 2754[label="",style="solid", color="blue", weight=3]; 4898[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4898[label="",style="solid", color="blue", weight=9]; 4898 -> 2755[label="",style="solid", color="blue", weight=3]; 4899[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4899[label="",style="solid", color="blue", weight=9]; 4899 -> 2756[label="",style="solid", color="blue", weight=3]; 2354[label="yvy153 == yvy156",fontsize=16,color="blue",shape="box"];4900[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4900[label="",style="solid", color="blue", weight=9]; 4900 -> 2757[label="",style="solid", color="blue", weight=3]; 4901[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4901[label="",style="solid", color="blue", weight=9]; 4901 -> 2758[label="",style="solid", color="blue", weight=3]; 4902[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4902[label="",style="solid", color="blue", weight=9]; 4902 -> 2759[label="",style="solid", color="blue", weight=3]; 4903[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4903[label="",style="solid", color="blue", weight=9]; 4903 -> 2760[label="",style="solid", color="blue", weight=3]; 4904[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4904[label="",style="solid", color="blue", weight=9]; 4904 -> 2761[label="",style="solid", color="blue", weight=3]; 4905[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4905[label="",style="solid", color="blue", weight=9]; 4905 -> 2762[label="",style="solid", color="blue", weight=3]; 4906[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4906[label="",style="solid", color="blue", weight=9]; 4906 -> 2763[label="",style="solid", color="blue", weight=3]; 4907[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4907[label="",style="solid", color="blue", weight=9]; 4907 -> 2764[label="",style="solid", color="blue", weight=3]; 4908[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4908[label="",style="solid", color="blue", weight=9]; 4908 -> 2765[label="",style="solid", color="blue", weight=3]; 4909[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4909[label="",style="solid", color="blue", weight=9]; 4909 -> 2766[label="",style="solid", color="blue", weight=3]; 4910[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4910[label="",style="solid", color="blue", weight=9]; 4910 -> 2767[label="",style="solid", color="blue", weight=3]; 4911[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4911[label="",style="solid", color="blue", weight=9]; 4911 -> 2768[label="",style="solid", color="blue", weight=3]; 4912[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4912[label="",style="solid", color="blue", weight=9]; 4912 -> 2769[label="",style="solid", color="blue", weight=3]; 4913[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4913[label="",style="solid", color="blue", weight=9]; 4913 -> 2770[label="",style="solid", color="blue", weight=3]; 2355 -> 1873[label="",style="dashed", color="red", weight=0]; 2355[label="yvy153 < yvy156",fontsize=16,color="magenta"];2355 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2355 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2356 -> 1874[label="",style="dashed", color="red", weight=0]; 2356[label="yvy153 < yvy156",fontsize=16,color="magenta"];2356 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2356 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2357 -> 1875[label="",style="dashed", color="red", weight=0]; 2357[label="yvy153 < yvy156",fontsize=16,color="magenta"];2357 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2357 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2358 -> 1876[label="",style="dashed", color="red", weight=0]; 2358[label="yvy153 < yvy156",fontsize=16,color="magenta"];2358 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2358 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2359 -> 1877[label="",style="dashed", color="red", weight=0]; 2359[label="yvy153 < yvy156",fontsize=16,color="magenta"];2359 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2359 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2360 -> 1878[label="",style="dashed", color="red", weight=0]; 2360[label="yvy153 < yvy156",fontsize=16,color="magenta"];2360 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2360 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2361 -> 1879[label="",style="dashed", color="red", weight=0]; 2361[label="yvy153 < yvy156",fontsize=16,color="magenta"];2361 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2361 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2362 -> 1880[label="",style="dashed", color="red", weight=0]; 2362[label="yvy153 < yvy156",fontsize=16,color="magenta"];2362 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2362 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2363 -> 1881[label="",style="dashed", color="red", weight=0]; 2363[label="yvy153 < yvy156",fontsize=16,color="magenta"];2363 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2363 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2364 -> 1882[label="",style="dashed", color="red", weight=0]; 2364[label="yvy153 < yvy156",fontsize=16,color="magenta"];2364 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2364 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2365 -> 1883[label="",style="dashed", color="red", weight=0]; 2365[label="yvy153 < yvy156",fontsize=16,color="magenta"];2365 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2365 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2366 -> 1884[label="",style="dashed", color="red", weight=0]; 2366[label="yvy153 < yvy156",fontsize=16,color="magenta"];2366 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2366 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2367 -> 1885[label="",style="dashed", color="red", weight=0]; 2367[label="yvy153 < yvy156",fontsize=16,color="magenta"];2367 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2367 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2368 -> 1886[label="",style="dashed", color="red", weight=0]; 2368[label="yvy153 < yvy156",fontsize=16,color="magenta"];2368 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2368 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2369[label="False || yvy305",fontsize=16,color="black",shape="box"];2369 -> 2799[label="",style="solid", color="black", weight=3]; 2370[label="True || yvy305",fontsize=16,color="black",shape="box"];2370 -> 2800[label="",style="solid", color="black", weight=3]; 2371[label="yvy155",fontsize=16,color="green",shape="box"];2372[label="yvy152",fontsize=16,color="green",shape="box"];2373[label="yvy155",fontsize=16,color="green",shape="box"];2374[label="yvy152",fontsize=16,color="green",shape="box"];2375[label="yvy155",fontsize=16,color="green",shape="box"];2376[label="yvy152",fontsize=16,color="green",shape="box"];2377[label="yvy155",fontsize=16,color="green",shape="box"];2378[label="yvy152",fontsize=16,color="green",shape="box"];2379[label="yvy155",fontsize=16,color="green",shape="box"];2380[label="yvy152",fontsize=16,color="green",shape="box"];2381[label="yvy155",fontsize=16,color="green",shape="box"];2382[label="yvy152",fontsize=16,color="green",shape="box"];2383[label="yvy155",fontsize=16,color="green",shape="box"];2384[label="yvy152",fontsize=16,color="green",shape="box"];2385[label="yvy155",fontsize=16,color="green",shape="box"];2386[label="yvy152",fontsize=16,color="green",shape="box"];2387[label="yvy155",fontsize=16,color="green",shape="box"];2388[label="yvy152",fontsize=16,color="green",shape="box"];2389[label="yvy155",fontsize=16,color="green",shape="box"];2390[label="yvy152",fontsize=16,color="green",shape="box"];2391[label="yvy155",fontsize=16,color="green",shape="box"];2392[label="yvy152",fontsize=16,color="green",shape="box"];2393[label="yvy155",fontsize=16,color="green",shape="box"];2394[label="yvy152",fontsize=16,color="green",shape="box"];2395[label="yvy155",fontsize=16,color="green",shape="box"];2396[label="yvy152",fontsize=16,color="green",shape="box"];2397[label="yvy155",fontsize=16,color="green",shape="box"];2398[label="yvy152",fontsize=16,color="green",shape="box"];2399[label="compare1 (yvy218,yvy219,yvy220) (yvy221,yvy222,yvy223) False",fontsize=16,color="black",shape="box"];2399 -> 2801[label="",style="solid", color="black", weight=3]; 2400[label="compare1 (yvy218,yvy219,yvy220) (yvy221,yvy222,yvy223) True",fontsize=16,color="black",shape="box"];2400 -> 2802[label="",style="solid", color="black", weight=3]; 2401[label="True",fontsize=16,color="green",shape="box"];2402[label="yvy30001",fontsize=16,color="green",shape="box"];2403[label="yvy40001",fontsize=16,color="green",shape="box"];2404 -> 892[label="",style="dashed", color="red", weight=0]; 2404[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2404 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2404 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2405 -> 893[label="",style="dashed", color="red", weight=0]; 2405[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2405 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2405 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2406 -> 894[label="",style="dashed", color="red", weight=0]; 2406[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2406 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2406 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2407 -> 895[label="",style="dashed", color="red", weight=0]; 2407[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2407 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2407 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2408 -> 896[label="",style="dashed", color="red", weight=0]; 2408[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2408 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2408 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2409 -> 897[label="",style="dashed", color="red", weight=0]; 2409[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2409 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2409 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2410 -> 898[label="",style="dashed", color="red", weight=0]; 2410[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2410 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2410 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2411 -> 899[label="",style="dashed", color="red", weight=0]; 2411[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2411 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2411 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2412 -> 900[label="",style="dashed", color="red", weight=0]; 2412[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2412 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2412 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2413 -> 901[label="",style="dashed", color="red", weight=0]; 2413[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2413 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2413 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2414 -> 902[label="",style="dashed", color="red", weight=0]; 2414[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2414 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2414 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2415 -> 903[label="",style="dashed", color="red", weight=0]; 2415[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2415 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2415 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2416 -> 904[label="",style="dashed", color="red", weight=0]; 2416[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2416 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2416 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2417 -> 905[label="",style="dashed", color="red", weight=0]; 2417[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2417 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2417 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2418[label="yvy40002 == yvy30002",fontsize=16,color="blue",shape="box"];4914[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4914[label="",style="solid", color="blue", weight=9]; 4914 -> 2831[label="",style="solid", color="blue", weight=3]; 4915[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4915[label="",style="solid", color="blue", weight=9]; 4915 -> 2832[label="",style="solid", color="blue", weight=3]; 4916[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4916[label="",style="solid", color="blue", weight=9]; 4916 -> 2833[label="",style="solid", color="blue", weight=3]; 4917[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4917[label="",style="solid", color="blue", weight=9]; 4917 -> 2834[label="",style="solid", color="blue", weight=3]; 4918[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4918[label="",style="solid", color="blue", weight=9]; 4918 -> 2835[label="",style="solid", color="blue", weight=3]; 4919[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4919[label="",style="solid", color="blue", weight=9]; 4919 -> 2836[label="",style="solid", color="blue", weight=3]; 4920[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4920[label="",style="solid", color="blue", weight=9]; 4920 -> 2837[label="",style="solid", color="blue", weight=3]; 4921[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4921[label="",style="solid", color="blue", weight=9]; 4921 -> 2838[label="",style="solid", color="blue", weight=3]; 4922[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4922[label="",style="solid", color="blue", weight=9]; 4922 -> 2839[label="",style="solid", color="blue", weight=3]; 4923[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4923[label="",style="solid", color="blue", weight=9]; 4923 -> 2840[label="",style="solid", color="blue", weight=3]; 4924[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4924[label="",style="solid", color="blue", weight=9]; 4924 -> 2841[label="",style="solid", color="blue", weight=3]; 4925[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4925[label="",style="solid", color="blue", weight=9]; 4925 -> 2842[label="",style="solid", color="blue", weight=3]; 4926[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4926[label="",style="solid", color="blue", weight=9]; 4926 -> 2843[label="",style="solid", color="blue", weight=3]; 4927[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4927[label="",style="solid", color="blue", weight=9]; 4927 -> 2844[label="",style="solid", color="blue", weight=3]; 2419[label="yvy40001 == yvy30001",fontsize=16,color="blue",shape="box"];4928[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 4928[label="",style="solid", color="blue", weight=9]; 4928 -> 2845[label="",style="solid", color="blue", weight=3]; 4929[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 4929[label="",style="solid", color="blue", weight=9]; 4929 -> 2846[label="",style="solid", color="blue", weight=3]; 4930[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 4930[label="",style="solid", color="blue", weight=9]; 4930 -> 2847[label="",style="solid", color="blue", weight=3]; 4931[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 4931[label="",style="solid", color="blue", weight=9]; 4931 -> 2848[label="",style="solid", color="blue", weight=3]; 4932[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 4932[label="",style="solid", color="blue", weight=9]; 4932 -> 2849[label="",style="solid", color="blue", weight=3]; 4933[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 4933[label="",style="solid", color="blue", weight=9]; 4933 -> 2850[label="",style="solid", color="blue", weight=3]; 4934[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 4934[label="",style="solid", color="blue", weight=9]; 4934 -> 2851[label="",style="solid", color="blue", weight=3]; 4935[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 4935[label="",style="solid", color="blue", weight=9]; 4935 -> 2852[label="",style="solid", color="blue", weight=3]; 4936[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 4936[label="",style="solid", color="blue", weight=9]; 4936 -> 2853[label="",style="solid", color="blue", weight=3]; 4937[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 4937[label="",style="solid", color="blue", weight=9]; 4937 -> 2854[label="",style="solid", color="blue", weight=3]; 4938[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 4938[label="",style="solid", color="blue", weight=9]; 4938 -> 2855[label="",style="solid", color="blue", weight=3]; 4939[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 4939[label="",style="solid", color="blue", weight=9]; 4939 -> 2856[label="",style="solid", color="blue", weight=3]; 4940[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 4940[label="",style="solid", color="blue", weight=9]; 4940 -> 2857[label="",style="solid", color="blue", weight=3]; 4941[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 4941[label="",style="solid", color="blue", weight=9]; 4941 -> 2858[label="",style="solid", color="blue", weight=3]; 2420 -> 892[label="",style="dashed", color="red", weight=0]; 2420[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2420 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2420 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2421 -> 893[label="",style="dashed", color="red", weight=0]; 2421[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2421 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2421 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2422 -> 894[label="",style="dashed", color="red", weight=0]; 2422[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2422 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2422 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2423 -> 895[label="",style="dashed", color="red", weight=0]; 2423[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2423 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2423 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2424 -> 896[label="",style="dashed", color="red", weight=0]; 2424[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2424 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2424 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2425 -> 897[label="",style="dashed", color="red", weight=0]; 2425[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2425 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2425 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2426 -> 898[label="",style="dashed", color="red", weight=0]; 2426[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2426 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2426 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2427 -> 899[label="",style="dashed", color="red", weight=0]; 2427[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2427 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2427 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2428 -> 900[label="",style="dashed", color="red", weight=0]; 2428[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2428 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2428 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2429 -> 901[label="",style="dashed", color="red", weight=0]; 2429[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2429 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2430 -> 902[label="",style="dashed", color="red", weight=0]; 2430[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2430 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2431 -> 903[label="",style="dashed", color="red", weight=0]; 2431[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2431 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2432 -> 904[label="",style="dashed", color="red", weight=0]; 2432[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2432 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2433 -> 905[label="",style="dashed", color="red", weight=0]; 2433[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2433 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2434 -> 892[label="",style="dashed", color="red", weight=0]; 2434[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2434 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2435 -> 893[label="",style="dashed", color="red", weight=0]; 2435[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2435 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2436 -> 894[label="",style="dashed", color="red", weight=0]; 2436[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2436 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2437 -> 895[label="",style="dashed", color="red", weight=0]; 2437[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2437 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2438 -> 896[label="",style="dashed", color="red", weight=0]; 2438[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2438 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2439 -> 897[label="",style="dashed", color="red", weight=0]; 2439[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2439 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2440 -> 898[label="",style="dashed", color="red", weight=0]; 2440[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2440 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2440 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2441 -> 899[label="",style="dashed", color="red", weight=0]; 2441[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2441 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2441 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2442 -> 900[label="",style="dashed", color="red", weight=0]; 2442[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2442 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2443 -> 901[label="",style="dashed", color="red", weight=0]; 2443[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2443 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2444 -> 902[label="",style="dashed", color="red", weight=0]; 2444[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2444 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2444 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2445 -> 903[label="",style="dashed", color="red", weight=0]; 2445[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2445 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2445 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2446 -> 904[label="",style="dashed", color="red", weight=0]; 2446[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2446 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2446 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2447 -> 905[label="",style="dashed", color="red", weight=0]; 2447[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2447 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2447 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2448 -> 892[label="",style="dashed", color="red", weight=0]; 2448[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2448 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2448 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2449 -> 893[label="",style="dashed", color="red", weight=0]; 2449[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2449 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2449 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2450 -> 894[label="",style="dashed", color="red", weight=0]; 2450[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2450 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2450 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2451 -> 895[label="",style="dashed", color="red", weight=0]; 2451[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2451 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2451 -> 2922[label="",style="dashed", color="magenta", weight=3]; 2452 -> 896[label="",style="dashed", color="red", weight=0]; 2452[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2452 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2452 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2453 -> 897[label="",style="dashed", color="red", weight=0]; 2453[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2453 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2453 -> 2926[label="",style="dashed", color="magenta", weight=3]; 2454 -> 898[label="",style="dashed", color="red", weight=0]; 2454[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2454 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2454 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2455 -> 899[label="",style="dashed", color="red", weight=0]; 2455[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2455 -> 2929[label="",style="dashed", color="magenta", weight=3]; 2455 -> 2930[label="",style="dashed", color="magenta", weight=3]; 2456 -> 900[label="",style="dashed", color="red", weight=0]; 2456[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2456 -> 2931[label="",style="dashed", color="magenta", weight=3]; 2456 -> 2932[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 -> 2933[label="",style="dashed", color="magenta", weight=3]; 2457 -> 2934[label="",style="dashed", color="magenta", weight=3]; 2458 -> 902[label="",style="dashed", color="red", weight=0]; 2458[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2458 -> 2935[label="",style="dashed", color="magenta", weight=3]; 2458 -> 2936[label="",style="dashed", color="magenta", weight=3]; 2459 -> 903[label="",style="dashed", color="red", weight=0]; 2459[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2459 -> 2937[label="",style="dashed", color="magenta", weight=3]; 2459 -> 2938[label="",style="dashed", color="magenta", weight=3]; 2460 -> 904[label="",style="dashed", color="red", weight=0]; 2460[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2460 -> 2939[label="",style="dashed", color="magenta", weight=3]; 2460 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2461 -> 905[label="",style="dashed", color="red", weight=0]; 2461[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2461 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2461 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2462 -> 665[label="",style="dashed", color="red", weight=0]; 2462[label="yvy40001 * yvy30000",fontsize=16,color="magenta"];2462 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2462 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2463 -> 665[label="",style="dashed", color="red", weight=0]; 2463[label="yvy40000 * yvy30001",fontsize=16,color="magenta"];2463 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2463 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2464[label="primEqNat (Succ yvy400000) yvy30000",fontsize=16,color="burlywood",shape="box"];4942[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2464 -> 4942[label="",style="solid", color="burlywood", weight=9]; 4942 -> 2947[label="",style="solid", color="burlywood", weight=3]; 4943[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2464 -> 4943[label="",style="solid", color="burlywood", weight=9]; 4943 -> 2948[label="",style="solid", color="burlywood", weight=3]; 2465[label="primEqNat Zero yvy30000",fontsize=16,color="burlywood",shape="box"];4944[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2465 -> 4944[label="",style="solid", color="burlywood", weight=9]; 4944 -> 2949[label="",style="solid", color="burlywood", weight=3]; 4945[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2465 -> 4945[label="",style="solid", color="burlywood", weight=9]; 4945 -> 2950[label="",style="solid", color="burlywood", weight=3]; 2466[label="yvy30000",fontsize=16,color="green",shape="box"];2467[label="yvy40000",fontsize=16,color="green",shape="box"];2468[label="yvy30000",fontsize=16,color="green",shape="box"];2469[label="yvy40000",fontsize=16,color="green",shape="box"];2470[label="yvy30000",fontsize=16,color="green",shape="box"];2471[label="yvy40000",fontsize=16,color="green",shape="box"];2472[label="yvy30000",fontsize=16,color="green",shape="box"];2473[label="yvy40000",fontsize=16,color="green",shape="box"];2474[label="yvy30000",fontsize=16,color="green",shape="box"];2475[label="yvy40000",fontsize=16,color="green",shape="box"];2476[label="yvy30000",fontsize=16,color="green",shape="box"];2477[label="yvy40000",fontsize=16,color="green",shape="box"];2478[label="yvy30000",fontsize=16,color="green",shape="box"];2479[label="yvy40000",fontsize=16,color="green",shape="box"];2480[label="yvy30000",fontsize=16,color="green",shape="box"];2481[label="yvy40000",fontsize=16,color="green",shape="box"];2482[label="yvy30000",fontsize=16,color="green",shape="box"];2483[label="yvy40000",fontsize=16,color="green",shape="box"];2484[label="yvy30000",fontsize=16,color="green",shape="box"];2485[label="yvy40000",fontsize=16,color="green",shape="box"];2486[label="yvy30000",fontsize=16,color="green",shape="box"];2487[label="yvy40000",fontsize=16,color="green",shape="box"];2488[label="yvy30000",fontsize=16,color="green",shape="box"];2489[label="yvy40000",fontsize=16,color="green",shape="box"];2490[label="yvy30000",fontsize=16,color="green",shape="box"];2491[label="yvy40000",fontsize=16,color="green",shape="box"];2492[label="yvy30000",fontsize=16,color="green",shape="box"];2493[label="yvy40000",fontsize=16,color="green",shape="box"];2494[label="yvy30000",fontsize=16,color="green",shape="box"];2495[label="yvy40000",fontsize=16,color="green",shape="box"];2496[label="yvy30000",fontsize=16,color="green",shape="box"];2497[label="yvy40000",fontsize=16,color="green",shape="box"];2498[label="yvy30000",fontsize=16,color="green",shape="box"];2499[label="yvy40000",fontsize=16,color="green",shape="box"];2500[label="yvy30000",fontsize=16,color="green",shape="box"];2501[label="yvy40000",fontsize=16,color="green",shape="box"];2502[label="yvy30000",fontsize=16,color="green",shape="box"];2503[label="yvy40000",fontsize=16,color="green",shape="box"];2504[label="yvy30000",fontsize=16,color="green",shape="box"];2505[label="yvy40000",fontsize=16,color="green",shape="box"];2506[label="yvy30000",fontsize=16,color="green",shape="box"];2507[label="yvy40000",fontsize=16,color="green",shape="box"];2508[label="yvy30000",fontsize=16,color="green",shape="box"];2509[label="yvy40000",fontsize=16,color="green",shape="box"];2510[label="yvy30000",fontsize=16,color="green",shape="box"];2511[label="yvy40000",fontsize=16,color="green",shape="box"];2512[label="yvy30000",fontsize=16,color="green",shape="box"];2513[label="yvy40000",fontsize=16,color="green",shape="box"];2514[label="yvy30000",fontsize=16,color="green",shape="box"];2515[label="yvy40000",fontsize=16,color="green",shape="box"];2516[label="yvy30000",fontsize=16,color="green",shape="box"];2517[label="yvy40000",fontsize=16,color="green",shape="box"];2518[label="yvy30000",fontsize=16,color="green",shape="box"];2519[label="yvy40000",fontsize=16,color="green",shape="box"];2520[label="yvy30000",fontsize=16,color="green",shape="box"];2521[label="yvy40000",fontsize=16,color="green",shape="box"];2522[label="yvy30000",fontsize=16,color="green",shape="box"];2523[label="yvy40000",fontsize=16,color="green",shape="box"];2524[label="yvy30000",fontsize=16,color="green",shape="box"];2525[label="yvy40000",fontsize=16,color="green",shape="box"];2526[label="yvy30000",fontsize=16,color="green",shape="box"];2527[label="yvy40000",fontsize=16,color="green",shape="box"];2528[label="yvy30000",fontsize=16,color="green",shape="box"];2529[label="yvy40000",fontsize=16,color="green",shape="box"];2530[label="yvy30000",fontsize=16,color="green",shape="box"];2531[label="yvy40000",fontsize=16,color="green",shape="box"];2532[label="yvy30000",fontsize=16,color="green",shape="box"];2533[label="yvy40000",fontsize=16,color="green",shape="box"];2534[label="yvy30000",fontsize=16,color="green",shape="box"];2535[label="yvy40000",fontsize=16,color="green",shape="box"];2536[label="yvy30000",fontsize=16,color="green",shape="box"];2537[label="yvy40000",fontsize=16,color="green",shape="box"];2538[label="yvy30000",fontsize=16,color="green",shape="box"];2539[label="yvy40000",fontsize=16,color="green",shape="box"];2540[label="yvy30000",fontsize=16,color="green",shape="box"];2541[label="yvy40000",fontsize=16,color="green",shape="box"];2542[label="yvy30000",fontsize=16,color="green",shape="box"];2543[label="yvy40000",fontsize=16,color="green",shape="box"];2544[label="yvy30000",fontsize=16,color="green",shape="box"];2545[label="yvy40000",fontsize=16,color="green",shape="box"];2546[label="yvy30000",fontsize=16,color="green",shape="box"];2547[label="yvy40000",fontsize=16,color="green",shape="box"];2548[label="yvy30000",fontsize=16,color="green",shape="box"];2549[label="yvy40000",fontsize=16,color="green",shape="box"];2550 -> 665[label="",style="dashed", color="red", weight=0]; 2550[label="yvy40001 * yvy30000",fontsize=16,color="magenta"];2550 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2551 -> 665[label="",style="dashed", color="red", weight=0]; 2551[label="yvy40000 * yvy30001",fontsize=16,color="magenta"];2551 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2551 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2552[label="primEqInt (Pos (Succ yvy400000)) (Pos (Succ yvy300000))",fontsize=16,color="black",shape="box"];2552 -> 2955[label="",style="solid", color="black", weight=3]; 2553[label="primEqInt (Pos (Succ yvy400000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2553 -> 2956[label="",style="solid", color="black", weight=3]; 2554[label="False",fontsize=16,color="green",shape="box"];2555[label="primEqInt (Pos Zero) (Pos (Succ yvy300000))",fontsize=16,color="black",shape="box"];2555 -> 2957[label="",style="solid", color="black", weight=3]; 2556[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2556 -> 2958[label="",style="solid", color="black", weight=3]; 2557[label="primEqInt (Pos Zero) (Neg (Succ yvy300000))",fontsize=16,color="black",shape="box"];2557 -> 2959[label="",style="solid", color="black", weight=3]; 2558[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2558 -> 2960[label="",style="solid", color="black", weight=3]; 2559[label="False",fontsize=16,color="green",shape="box"];2560[label="primEqInt (Neg (Succ yvy400000)) (Neg (Succ yvy300000))",fontsize=16,color="black",shape="box"];2560 -> 2961[label="",style="solid", color="black", weight=3]; 2561[label="primEqInt (Neg (Succ yvy400000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2561 -> 2962[label="",style="solid", color="black", weight=3]; 2562[label="primEqInt (Neg Zero) (Pos (Succ yvy300000))",fontsize=16,color="black",shape="box"];2562 -> 2963[label="",style="solid", color="black", weight=3]; 2563[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2563 -> 2964[label="",style="solid", color="black", weight=3]; 2564[label="primEqInt (Neg Zero) (Neg (Succ yvy300000))",fontsize=16,color="black",shape="box"];2564 -> 2965[label="",style="solid", color="black", weight=3]; 2565[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2565 -> 2966[label="",style="solid", color="black", weight=3]; 2566 -> 901[label="",style="dashed", color="red", weight=0]; 2566[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2566 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2566 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2567 -> 905[label="",style="dashed", color="red", weight=0]; 2567[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2567 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2567 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2568 -> 901[label="",style="dashed", color="red", weight=0]; 2568[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2568 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2568 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2569 -> 905[label="",style="dashed", color="red", weight=0]; 2569[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2569 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2569 -> 2974[label="",style="dashed", color="magenta", weight=3]; 2571 -> 312[label="",style="dashed", color="red", weight=0]; 2571[label="compare yvy89 yvy90",fontsize=16,color="magenta"];2571 -> 2975[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2570[label="yvy306 /= GT",fontsize=16,color="black",shape="triangle"];2570 -> 2977[label="",style="solid", color="black", weight=3]; 2579[label="False <= False",fontsize=16,color="black",shape="box"];2579 -> 2978[label="",style="solid", color="black", weight=3]; 2580[label="False <= True",fontsize=16,color="black",shape="box"];2580 -> 2979[label="",style="solid", color="black", weight=3]; 2581[label="True <= False",fontsize=16,color="black",shape="box"];2581 -> 2980[label="",style="solid", color="black", weight=3]; 2582[label="True <= True",fontsize=16,color="black",shape="box"];2582 -> 2981[label="",style="solid", color="black", weight=3]; 2572 -> 314[label="",style="dashed", color="red", weight=0]; 2572[label="compare yvy89 yvy90",fontsize=16,color="magenta"];2572 -> 2982[label="",style="dashed", color="magenta", weight=3]; 2572 -> 2983[label="",style="dashed", color="magenta", weight=3]; 2573 -> 315[label="",style="dashed", color="red", weight=0]; 2573[label="compare yvy89 yvy90",fontsize=16,color="magenta"];2573 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2573 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2574 -> 316[label="",style="dashed", color="red", weight=0]; 2574[label="compare yvy89 yvy90",fontsize=16,color="magenta"];2574 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2987[label="",style="dashed", color="magenta", weight=3]; 2575 -> 317[label="",style="dashed", color="red", weight=0]; 2575[label="compare yvy89 yvy90",fontsize=16,color="magenta"];2575 -> 2988[label="",style="dashed", color="magenta", weight=3]; 2575 -> 2989[label="",style="dashed", color="magenta", weight=3]; 2576 -> 122[label="",style="dashed", color="red", weight=0]; 2576[label="compare yvy89 yvy90",fontsize=16,color="magenta"];2576 -> 2990[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2991[label="",style="dashed", color="magenta", weight=3]; 2583[label="(yvy890,yvy891,yvy892) <= (yvy900,yvy901,yvy902)",fontsize=16,color="black",shape="box"];2583 -> 2992[label="",style="solid", color="black", weight=3]; 2584[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2584 -> 2993[label="",style="solid", color="black", weight=3]; 2585[label="Nothing <= Just yvy900",fontsize=16,color="black",shape="box"];2585 -> 2994[label="",style="solid", color="black", weight=3]; 2586[label="Just yvy890 <= Nothing",fontsize=16,color="black",shape="box"];2586 -> 2995[label="",style="solid", color="black", weight=3]; 2587[label="Just yvy890 <= Just yvy900",fontsize=16,color="black",shape="box"];2587 -> 2996[label="",style="solid", color="black", weight=3]; 2588[label="LT <= LT",fontsize=16,color="black",shape="box"];2588 -> 2997[label="",style="solid", color="black", weight=3]; 2589[label="LT <= EQ",fontsize=16,color="black",shape="box"];2589 -> 2998[label="",style="solid", color="black", weight=3]; 2590[label="LT <= GT",fontsize=16,color="black",shape="box"];2590 -> 2999[label="",style="solid", color="black", weight=3]; 2591[label="EQ <= LT",fontsize=16,color="black",shape="box"];2591 -> 3000[label="",style="solid", color="black", weight=3]; 2592[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2592 -> 3001[label="",style="solid", color="black", weight=3]; 2593[label="EQ <= GT",fontsize=16,color="black",shape="box"];2593 -> 3002[label="",style="solid", color="black", weight=3]; 2594[label="GT <= LT",fontsize=16,color="black",shape="box"];2594 -> 3003[label="",style="solid", color="black", weight=3]; 2595[label="GT <= EQ",fontsize=16,color="black",shape="box"];2595 -> 3004[label="",style="solid", color="black", weight=3]; 2596[label="GT <= GT",fontsize=16,color="black",shape="box"];2596 -> 3005[label="",style="solid", color="black", weight=3]; 2577 -> 322[label="",style="dashed", color="red", weight=0]; 2577[label="compare yvy89 yvy90",fontsize=16,color="magenta"];2577 -> 3006[label="",style="dashed", color="magenta", weight=3]; 2577 -> 3007[label="",style="dashed", color="magenta", weight=3]; 2578 -> 323[label="",style="dashed", color="red", weight=0]; 2578[label="compare yvy89 yvy90",fontsize=16,color="magenta"];2578 -> 3008[label="",style="dashed", color="magenta", weight=3]; 2578 -> 3009[label="",style="dashed", color="magenta", weight=3]; 2597[label="Left yvy890 <= Left yvy900",fontsize=16,color="black",shape="box"];2597 -> 3010[label="",style="solid", color="black", weight=3]; 2598[label="Left yvy890 <= Right yvy900",fontsize=16,color="black",shape="box"];2598 -> 3011[label="",style="solid", color="black", weight=3]; 2599[label="Right yvy890 <= Left yvy900",fontsize=16,color="black",shape="box"];2599 -> 3012[label="",style="solid", color="black", weight=3]; 2600[label="Right yvy890 <= Right yvy900",fontsize=16,color="black",shape="box"];2600 -> 3013[label="",style="solid", color="black", weight=3]; 2601[label="(yvy890,yvy891) <= (yvy900,yvy901)",fontsize=16,color="black",shape="box"];2601 -> 3014[label="",style="solid", color="black", weight=3]; 2602[label="GT",fontsize=16,color="green",shape="box"];2603[label="GT",fontsize=16,color="green",shape="box"];2604[label="GT",fontsize=16,color="green",shape="box"];2605[label="yvy166",fontsize=16,color="green",shape="box"];2606[label="yvy168",fontsize=16,color="green",shape="box"];2607[label="yvy166",fontsize=16,color="green",shape="box"];2608[label="yvy168",fontsize=16,color="green",shape="box"];2609[label="yvy166",fontsize=16,color="green",shape="box"];2610[label="yvy168",fontsize=16,color="green",shape="box"];2611[label="yvy166",fontsize=16,color="green",shape="box"];2612[label="yvy168",fontsize=16,color="green",shape="box"];2613[label="yvy166",fontsize=16,color="green",shape="box"];2614[label="yvy168",fontsize=16,color="green",shape="box"];2615[label="yvy166",fontsize=16,color="green",shape="box"];2616[label="yvy168",fontsize=16,color="green",shape="box"];2617[label="yvy166",fontsize=16,color="green",shape="box"];2618[label="yvy168",fontsize=16,color="green",shape="box"];2619[label="yvy166",fontsize=16,color="green",shape="box"];2620[label="yvy168",fontsize=16,color="green",shape="box"];2621[label="yvy166",fontsize=16,color="green",shape="box"];2622[label="yvy168",fontsize=16,color="green",shape="box"];2623[label="yvy166",fontsize=16,color="green",shape="box"];2624[label="yvy168",fontsize=16,color="green",shape="box"];2625[label="yvy166",fontsize=16,color="green",shape="box"];2626[label="yvy168",fontsize=16,color="green",shape="box"];2627[label="yvy166",fontsize=16,color="green",shape="box"];2628[label="yvy168",fontsize=16,color="green",shape="box"];2629[label="yvy166",fontsize=16,color="green",shape="box"];2630[label="yvy168",fontsize=16,color="green",shape="box"];2631[label="yvy166",fontsize=16,color="green",shape="box"];2632[label="yvy168",fontsize=16,color="green",shape="box"];2633[label="yvy167",fontsize=16,color="green",shape="box"];2634[label="yvy165",fontsize=16,color="green",shape="box"];2635[label="yvy167",fontsize=16,color="green",shape="box"];2636[label="yvy165",fontsize=16,color="green",shape="box"];2637[label="yvy167",fontsize=16,color="green",shape="box"];2638[label="yvy165",fontsize=16,color="green",shape="box"];2639[label="yvy167",fontsize=16,color="green",shape="box"];2640[label="yvy165",fontsize=16,color="green",shape="box"];2641[label="yvy167",fontsize=16,color="green",shape="box"];2642[label="yvy165",fontsize=16,color="green",shape="box"];2643[label="yvy167",fontsize=16,color="green",shape="box"];2644[label="yvy165",fontsize=16,color="green",shape="box"];2645[label="yvy167",fontsize=16,color="green",shape="box"];2646[label="yvy165",fontsize=16,color="green",shape="box"];2647[label="yvy167",fontsize=16,color="green",shape="box"];2648[label="yvy165",fontsize=16,color="green",shape="box"];2649[label="yvy167",fontsize=16,color="green",shape="box"];2650[label="yvy165",fontsize=16,color="green",shape="box"];2651[label="yvy167",fontsize=16,color="green",shape="box"];2652[label="yvy165",fontsize=16,color="green",shape="box"];2653[label="yvy167",fontsize=16,color="green",shape="box"];2654[label="yvy165",fontsize=16,color="green",shape="box"];2655[label="yvy167",fontsize=16,color="green",shape="box"];2656[label="yvy165",fontsize=16,color="green",shape="box"];2657[label="yvy167",fontsize=16,color="green",shape="box"];2658[label="yvy165",fontsize=16,color="green",shape="box"];2659[label="yvy167",fontsize=16,color="green",shape="box"];2660[label="yvy165",fontsize=16,color="green",shape="box"];2661[label="compare1 (yvy233,yvy234) (yvy235,yvy236) False",fontsize=16,color="black",shape="box"];2661 -> 3015[label="",style="solid", color="black", weight=3]; 2662[label="compare1 (yvy233,yvy234) (yvy235,yvy236) True",fontsize=16,color="black",shape="box"];2662 -> 3016[label="",style="solid", color="black", weight=3]; 2663[label="True",fontsize=16,color="green",shape="box"];2664[label="primPlusInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2664 -> 3017[label="",style="solid", color="black", weight=3]; 2665[label="primPlusInt (Pos Zero) yvy542",fontsize=16,color="burlywood",shape="box"];4946[label="yvy542/Pos yvy5420",fontsize=10,color="white",style="solid",shape="box"];2665 -> 4946[label="",style="solid", color="burlywood", weight=9]; 4946 -> 3018[label="",style="solid", color="burlywood", weight=3]; 4947[label="yvy542/Neg yvy5420",fontsize=10,color="white",style="solid",shape="box"];2665 -> 4947[label="",style="solid", color="burlywood", weight=9]; 4947 -> 3019[label="",style="solid", color="burlywood", weight=3]; 2666[label="primPlusInt (Pos yvy11820) (FiniteMap.sizeFM FiniteMap.EmptyFM)",fontsize=16,color="black",shape="box"];2666 -> 3020[label="",style="solid", color="black", weight=3]; 2667[label="primPlusInt (Pos yvy11820) (FiniteMap.sizeFM (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544))",fontsize=16,color="black",shape="box"];2667 -> 3021[label="",style="solid", color="black", weight=3]; 2668[label="primPlusInt (Neg yvy11820) (FiniteMap.sizeFM FiniteMap.EmptyFM)",fontsize=16,color="black",shape="box"];2668 -> 3022[label="",style="solid", color="black", weight=3]; 2669[label="primPlusInt (Neg yvy11820) (FiniteMap.sizeFM (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544))",fontsize=16,color="black",shape="box"];2669 -> 3023[label="",style="solid", color="black", weight=3]; 4126[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy363 yvy361 yvy364 + FiniteMap.mkBranchRight_size yvy363 yvy361 yvy364",fontsize=16,color="black",shape="box"];4126 -> 4127[label="",style="solid", color="black", weight=3]; 3252[label="Pos Zero",fontsize=16,color="green",shape="box"];3253[label="yvy542",fontsize=16,color="green",shape="box"];3050 -> 3044[label="",style="dashed", color="red", weight=0]; 3050[label="FiniteMap.sizeFM yvy118",fontsize=16,color="magenta"];3050 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3254[label="yvy310",fontsize=16,color="green",shape="box"];3255[label="yvy311",fontsize=16,color="green",shape="box"];3042 -> 665[label="",style="dashed", color="red", weight=0]; 3042[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54",fontsize=16,color="magenta"];3042 -> 3051[label="",style="dashed", color="magenta", weight=3]; 3042 -> 3052[label="",style="dashed", color="magenta", weight=3]; 3048[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 False",fontsize=16,color="black",shape="box"];3048 -> 3187[label="",style="solid", color="black", weight=3]; 3049[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 True",fontsize=16,color="black",shape="box"];3049 -> 3188[label="",style="solid", color="black", weight=3]; 2678[label="error []",fontsize=16,color="red",shape="box"];2679[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"];2679 -> 3053[label="",style="solid", color="black", weight=3]; 3550[label="yvy30700",fontsize=16,color="green",shape="box"];3551[label="yvy4001000",fontsize=16,color="green",shape="box"];2715[label="yvy155",fontsize=16,color="green",shape="box"];2716[label="yvy152",fontsize=16,color="green",shape="box"];2717[label="yvy155",fontsize=16,color="green",shape="box"];2718[label="yvy152",fontsize=16,color="green",shape="box"];2719[label="yvy155",fontsize=16,color="green",shape="box"];2720[label="yvy152",fontsize=16,color="green",shape="box"];2721[label="yvy155",fontsize=16,color="green",shape="box"];2722[label="yvy152",fontsize=16,color="green",shape="box"];2723[label="yvy155",fontsize=16,color="green",shape="box"];2724[label="yvy152",fontsize=16,color="green",shape="box"];2725[label="yvy155",fontsize=16,color="green",shape="box"];2726[label="yvy152",fontsize=16,color="green",shape="box"];2727[label="yvy155",fontsize=16,color="green",shape="box"];2728[label="yvy152",fontsize=16,color="green",shape="box"];2729[label="yvy155",fontsize=16,color="green",shape="box"];2730[label="yvy152",fontsize=16,color="green",shape="box"];2731[label="yvy155",fontsize=16,color="green",shape="box"];2732[label="yvy152",fontsize=16,color="green",shape="box"];2733[label="yvy155",fontsize=16,color="green",shape="box"];2734[label="yvy152",fontsize=16,color="green",shape="box"];2735[label="yvy155",fontsize=16,color="green",shape="box"];2736[label="yvy152",fontsize=16,color="green",shape="box"];2737[label="yvy155",fontsize=16,color="green",shape="box"];2738[label="yvy152",fontsize=16,color="green",shape="box"];2739[label="yvy155",fontsize=16,color="green",shape="box"];2740[label="yvy152",fontsize=16,color="green",shape="box"];2741[label="yvy155",fontsize=16,color="green",shape="box"];2742[label="yvy152",fontsize=16,color="green",shape="box"];2743 -> 1891[label="",style="dashed", color="red", weight=0]; 2743[label="yvy154 <= yvy157",fontsize=16,color="magenta"];2743 -> 3058[label="",style="dashed", color="magenta", weight=3]; 2743 -> 3059[label="",style="dashed", color="magenta", weight=3]; 2744 -> 1892[label="",style="dashed", color="red", weight=0]; 2744[label="yvy154 <= yvy157",fontsize=16,color="magenta"];2744 -> 3060[label="",style="dashed", color="magenta", weight=3]; 2744 -> 3061[label="",style="dashed", color="magenta", weight=3]; 2745 -> 1893[label="",style="dashed", color="red", weight=0]; 2745[label="yvy154 <= yvy157",fontsize=16,color="magenta"];2745 -> 3062[label="",style="dashed", color="magenta", weight=3]; 2745 -> 3063[label="",style="dashed", color="magenta", weight=3]; 2746 -> 1894[label="",style="dashed", color="red", weight=0]; 2746[label="yvy154 <= yvy157",fontsize=16,color="magenta"];2746 -> 3064[label="",style="dashed", color="magenta", weight=3]; 2746 -> 3065[label="",style="dashed", color="magenta", weight=3]; 2747 -> 1895[label="",style="dashed", color="red", weight=0]; 2747[label="yvy154 <= yvy157",fontsize=16,color="magenta"];2747 -> 3066[label="",style="dashed", color="magenta", weight=3]; 2747 -> 3067[label="",style="dashed", color="magenta", weight=3]; 2748 -> 1896[label="",style="dashed", color="red", weight=0]; 2748[label="yvy154 <= yvy157",fontsize=16,color="magenta"];2748 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2748 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2749 -> 1897[label="",style="dashed", color="red", weight=0]; 2749[label="yvy154 <= yvy157",fontsize=16,color="magenta"];2749 -> 3070[label="",style="dashed", color="magenta", weight=3]; 2749 -> 3071[label="",style="dashed", color="magenta", weight=3]; 2750 -> 1898[label="",style="dashed", color="red", weight=0]; 2750[label="yvy154 <= yvy157",fontsize=16,color="magenta"];2750 -> 3072[label="",style="dashed", color="magenta", weight=3]; 2750 -> 3073[label="",style="dashed", color="magenta", weight=3]; 2751 -> 1899[label="",style="dashed", color="red", weight=0]; 2751[label="yvy154 <= yvy157",fontsize=16,color="magenta"];2751 -> 3074[label="",style="dashed", color="magenta", weight=3]; 2751 -> 3075[label="",style="dashed", color="magenta", weight=3]; 2752 -> 1900[label="",style="dashed", color="red", weight=0]; 2752[label="yvy154 <= yvy157",fontsize=16,color="magenta"];2752 -> 3076[label="",style="dashed", color="magenta", weight=3]; 2752 -> 3077[label="",style="dashed", color="magenta", weight=3]; 2753 -> 1901[label="",style="dashed", color="red", weight=0]; 2753[label="yvy154 <= yvy157",fontsize=16,color="magenta"];2753 -> 3078[label="",style="dashed", color="magenta", weight=3]; 2753 -> 3079[label="",style="dashed", color="magenta", weight=3]; 2754 -> 1902[label="",style="dashed", color="red", weight=0]; 2754[label="yvy154 <= yvy157",fontsize=16,color="magenta"];2754 -> 3080[label="",style="dashed", color="magenta", weight=3]; 2754 -> 3081[label="",style="dashed", color="magenta", weight=3]; 2755 -> 1903[label="",style="dashed", color="red", weight=0]; 2755[label="yvy154 <= yvy157",fontsize=16,color="magenta"];2755 -> 3082[label="",style="dashed", color="magenta", weight=3]; 2755 -> 3083[label="",style="dashed", color="magenta", weight=3]; 2756 -> 1904[label="",style="dashed", color="red", weight=0]; 2756[label="yvy154 <= yvy157",fontsize=16,color="magenta"];2756 -> 3084[label="",style="dashed", color="magenta", weight=3]; 2756 -> 3085[label="",style="dashed", color="magenta", weight=3]; 2757 -> 904[label="",style="dashed", color="red", weight=0]; 2757[label="yvy153 == yvy156",fontsize=16,color="magenta"];2757 -> 3086[label="",style="dashed", color="magenta", weight=3]; 2757 -> 3087[label="",style="dashed", color="magenta", weight=3]; 2758 -> 894[label="",style="dashed", color="red", weight=0]; 2758[label="yvy153 == yvy156",fontsize=16,color="magenta"];2758 -> 3088[label="",style="dashed", color="magenta", weight=3]; 2758 -> 3089[label="",style="dashed", color="magenta", weight=3]; 2759 -> 901[label="",style="dashed", color="red", weight=0]; 2759[label="yvy153 == yvy156",fontsize=16,color="magenta"];2759 -> 3090[label="",style="dashed", color="magenta", weight=3]; 2759 -> 3091[label="",style="dashed", color="magenta", weight=3]; 2760 -> 905[label="",style="dashed", color="red", weight=0]; 2760[label="yvy153 == yvy156",fontsize=16,color="magenta"];2760 -> 3092[label="",style="dashed", color="magenta", weight=3]; 2760 -> 3093[label="",style="dashed", color="magenta", weight=3]; 2761 -> 903[label="",style="dashed", color="red", weight=0]; 2761[label="yvy153 == yvy156",fontsize=16,color="magenta"];2761 -> 3094[label="",style="dashed", color="magenta", weight=3]; 2761 -> 3095[label="",style="dashed", color="magenta", weight=3]; 2762 -> 900[label="",style="dashed", color="red", weight=0]; 2762[label="yvy153 == yvy156",fontsize=16,color="magenta"];2762 -> 3096[label="",style="dashed", color="magenta", weight=3]; 2762 -> 3097[label="",style="dashed", color="magenta", weight=3]; 2763 -> 892[label="",style="dashed", color="red", weight=0]; 2763[label="yvy153 == yvy156",fontsize=16,color="magenta"];2763 -> 3098[label="",style="dashed", color="magenta", weight=3]; 2763 -> 3099[label="",style="dashed", color="magenta", weight=3]; 2764 -> 893[label="",style="dashed", color="red", weight=0]; 2764[label="yvy153 == yvy156",fontsize=16,color="magenta"];2764 -> 3100[label="",style="dashed", color="magenta", weight=3]; 2764 -> 3101[label="",style="dashed", color="magenta", weight=3]; 2765 -> 899[label="",style="dashed", color="red", weight=0]; 2765[label="yvy153 == yvy156",fontsize=16,color="magenta"];2765 -> 3102[label="",style="dashed", color="magenta", weight=3]; 2765 -> 3103[label="",style="dashed", color="magenta", weight=3]; 2766 -> 902[label="",style="dashed", color="red", weight=0]; 2766[label="yvy153 == yvy156",fontsize=16,color="magenta"];2766 -> 3104[label="",style="dashed", color="magenta", weight=3]; 2766 -> 3105[label="",style="dashed", color="magenta", weight=3]; 2767 -> 897[label="",style="dashed", color="red", weight=0]; 2767[label="yvy153 == yvy156",fontsize=16,color="magenta"];2767 -> 3106[label="",style="dashed", color="magenta", weight=3]; 2767 -> 3107[label="",style="dashed", color="magenta", weight=3]; 2768 -> 896[label="",style="dashed", color="red", weight=0]; 2768[label="yvy153 == yvy156",fontsize=16,color="magenta"];2768 -> 3108[label="",style="dashed", color="magenta", weight=3]; 2768 -> 3109[label="",style="dashed", color="magenta", weight=3]; 2769 -> 898[label="",style="dashed", color="red", weight=0]; 2769[label="yvy153 == yvy156",fontsize=16,color="magenta"];2769 -> 3110[label="",style="dashed", color="magenta", weight=3]; 2769 -> 3111[label="",style="dashed", color="magenta", weight=3]; 2770 -> 895[label="",style="dashed", color="red", weight=0]; 2770[label="yvy153 == yvy156",fontsize=16,color="magenta"];2770 -> 3112[label="",style="dashed", color="magenta", weight=3]; 2770 -> 3113[label="",style="dashed", color="magenta", weight=3]; 2771[label="yvy153",fontsize=16,color="green",shape="box"];2772[label="yvy156",fontsize=16,color="green",shape="box"];2773[label="yvy153",fontsize=16,color="green",shape="box"];2774[label="yvy156",fontsize=16,color="green",shape="box"];2775[label="yvy153",fontsize=16,color="green",shape="box"];2776[label="yvy156",fontsize=16,color="green",shape="box"];2777[label="yvy153",fontsize=16,color="green",shape="box"];2778[label="yvy156",fontsize=16,color="green",shape="box"];2779[label="yvy153",fontsize=16,color="green",shape="box"];2780[label="yvy156",fontsize=16,color="green",shape="box"];2781[label="yvy153",fontsize=16,color="green",shape="box"];2782[label="yvy156",fontsize=16,color="green",shape="box"];2783[label="yvy153",fontsize=16,color="green",shape="box"];2784[label="yvy156",fontsize=16,color="green",shape="box"];2785[label="yvy153",fontsize=16,color="green",shape="box"];2786[label="yvy156",fontsize=16,color="green",shape="box"];2787[label="yvy153",fontsize=16,color="green",shape="box"];2788[label="yvy156",fontsize=16,color="green",shape="box"];2789[label="yvy153",fontsize=16,color="green",shape="box"];2790[label="yvy156",fontsize=16,color="green",shape="box"];2791[label="yvy153",fontsize=16,color="green",shape="box"];2792[label="yvy156",fontsize=16,color="green",shape="box"];2793[label="yvy153",fontsize=16,color="green",shape="box"];2794[label="yvy156",fontsize=16,color="green",shape="box"];2795[label="yvy153",fontsize=16,color="green",shape="box"];2796[label="yvy156",fontsize=16,color="green",shape="box"];2797[label="yvy153",fontsize=16,color="green",shape="box"];2798[label="yvy156",fontsize=16,color="green",shape="box"];2799[label="yvy305",fontsize=16,color="green",shape="box"];2800[label="True",fontsize=16,color="green",shape="box"];2801[label="compare0 (yvy218,yvy219,yvy220) (yvy221,yvy222,yvy223) otherwise",fontsize=16,color="black",shape="box"];2801 -> 3114[label="",style="solid", color="black", weight=3]; 2802[label="LT",fontsize=16,color="green",shape="box"];2803[label="yvy30000",fontsize=16,color="green",shape="box"];2804[label="yvy40000",fontsize=16,color="green",shape="box"];2805[label="yvy30000",fontsize=16,color="green",shape="box"];2806[label="yvy40000",fontsize=16,color="green",shape="box"];2807[label="yvy30000",fontsize=16,color="green",shape="box"];2808[label="yvy40000",fontsize=16,color="green",shape="box"];2809[label="yvy30000",fontsize=16,color="green",shape="box"];2810[label="yvy40000",fontsize=16,color="green",shape="box"];2811[label="yvy30000",fontsize=16,color="green",shape="box"];2812[label="yvy40000",fontsize=16,color="green",shape="box"];2813[label="yvy30000",fontsize=16,color="green",shape="box"];2814[label="yvy40000",fontsize=16,color="green",shape="box"];2815[label="yvy30000",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="yvy40000",fontsize=16,color="green",shape="box"];2821[label="yvy30000",fontsize=16,color="green",shape="box"];2822[label="yvy40000",fontsize=16,color="green",shape="box"];2823[label="yvy30000",fontsize=16,color="green",shape="box"];2824[label="yvy40000",fontsize=16,color="green",shape="box"];2825[label="yvy30000",fontsize=16,color="green",shape="box"];2826[label="yvy40000",fontsize=16,color="green",shape="box"];2827[label="yvy30000",fontsize=16,color="green",shape="box"];2828[label="yvy40000",fontsize=16,color="green",shape="box"];2829[label="yvy30000",fontsize=16,color="green",shape="box"];2830[label="yvy40000",fontsize=16,color="green",shape="box"];2831 -> 892[label="",style="dashed", color="red", weight=0]; 2831[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2831 -> 3115[label="",style="dashed", color="magenta", weight=3]; 2831 -> 3116[label="",style="dashed", color="magenta", weight=3]; 2832 -> 893[label="",style="dashed", color="red", weight=0]; 2832[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2832 -> 3117[label="",style="dashed", color="magenta", weight=3]; 2832 -> 3118[label="",style="dashed", color="magenta", weight=3]; 2833 -> 894[label="",style="dashed", color="red", weight=0]; 2833[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2833 -> 3119[label="",style="dashed", color="magenta", weight=3]; 2833 -> 3120[label="",style="dashed", color="magenta", weight=3]; 2834 -> 895[label="",style="dashed", color="red", weight=0]; 2834[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2834 -> 3121[label="",style="dashed", color="magenta", weight=3]; 2834 -> 3122[label="",style="dashed", color="magenta", weight=3]; 2835 -> 896[label="",style="dashed", color="red", weight=0]; 2835[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2835 -> 3123[label="",style="dashed", color="magenta", weight=3]; 2835 -> 3124[label="",style="dashed", color="magenta", weight=3]; 2836 -> 897[label="",style="dashed", color="red", weight=0]; 2836[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2836 -> 3125[label="",style="dashed", color="magenta", weight=3]; 2836 -> 3126[label="",style="dashed", color="magenta", weight=3]; 2837 -> 898[label="",style="dashed", color="red", weight=0]; 2837[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2837 -> 3127[label="",style="dashed", color="magenta", weight=3]; 2837 -> 3128[label="",style="dashed", color="magenta", weight=3]; 2838 -> 899[label="",style="dashed", color="red", weight=0]; 2838[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2838 -> 3129[label="",style="dashed", color="magenta", weight=3]; 2838 -> 3130[label="",style="dashed", color="magenta", weight=3]; 2839 -> 900[label="",style="dashed", color="red", weight=0]; 2839[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2839 -> 3131[label="",style="dashed", color="magenta", weight=3]; 2839 -> 3132[label="",style="dashed", color="magenta", weight=3]; 2840 -> 901[label="",style="dashed", color="red", weight=0]; 2840[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2840 -> 3133[label="",style="dashed", color="magenta", weight=3]; 2840 -> 3134[label="",style="dashed", color="magenta", weight=3]; 2841 -> 902[label="",style="dashed", color="red", weight=0]; 2841[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2841 -> 3135[label="",style="dashed", color="magenta", weight=3]; 2841 -> 3136[label="",style="dashed", color="magenta", weight=3]; 2842 -> 903[label="",style="dashed", color="red", weight=0]; 2842[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2842 -> 3137[label="",style="dashed", color="magenta", weight=3]; 2842 -> 3138[label="",style="dashed", color="magenta", weight=3]; 2843 -> 904[label="",style="dashed", color="red", weight=0]; 2843[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2843 -> 3139[label="",style="dashed", color="magenta", weight=3]; 2843 -> 3140[label="",style="dashed", color="magenta", weight=3]; 2844 -> 905[label="",style="dashed", color="red", weight=0]; 2844[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2844 -> 3141[label="",style="dashed", color="magenta", weight=3]; 2844 -> 3142[label="",style="dashed", color="magenta", weight=3]; 2845 -> 892[label="",style="dashed", color="red", weight=0]; 2845[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2845 -> 3143[label="",style="dashed", color="magenta", weight=3]; 2845 -> 3144[label="",style="dashed", color="magenta", weight=3]; 2846 -> 893[label="",style="dashed", color="red", weight=0]; 2846[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2846 -> 3145[label="",style="dashed", color="magenta", weight=3]; 2846 -> 3146[label="",style="dashed", color="magenta", weight=3]; 2847 -> 894[label="",style="dashed", color="red", weight=0]; 2847[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2847 -> 3147[label="",style="dashed", color="magenta", weight=3]; 2847 -> 3148[label="",style="dashed", color="magenta", weight=3]; 2848 -> 895[label="",style="dashed", color="red", weight=0]; 2848[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2848 -> 3149[label="",style="dashed", color="magenta", weight=3]; 2848 -> 3150[label="",style="dashed", color="magenta", weight=3]; 2849 -> 896[label="",style="dashed", color="red", weight=0]; 2849[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2849 -> 3151[label="",style="dashed", color="magenta", weight=3]; 2849 -> 3152[label="",style="dashed", color="magenta", weight=3]; 2850 -> 897[label="",style="dashed", color="red", weight=0]; 2850[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2850 -> 3153[label="",style="dashed", color="magenta", weight=3]; 2850 -> 3154[label="",style="dashed", color="magenta", weight=3]; 2851 -> 898[label="",style="dashed", color="red", weight=0]; 2851[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2851 -> 3155[label="",style="dashed", color="magenta", weight=3]; 2851 -> 3156[label="",style="dashed", color="magenta", weight=3]; 2852 -> 899[label="",style="dashed", color="red", weight=0]; 2852[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2852 -> 3157[label="",style="dashed", color="magenta", weight=3]; 2852 -> 3158[label="",style="dashed", color="magenta", weight=3]; 2853 -> 900[label="",style="dashed", color="red", weight=0]; 2853[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2853 -> 3159[label="",style="dashed", color="magenta", weight=3]; 2853 -> 3160[label="",style="dashed", color="magenta", weight=3]; 2854 -> 901[label="",style="dashed", color="red", weight=0]; 2854[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2854 -> 3161[label="",style="dashed", color="magenta", weight=3]; 2854 -> 3162[label="",style="dashed", color="magenta", weight=3]; 2855 -> 902[label="",style="dashed", color="red", weight=0]; 2855[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2855 -> 3163[label="",style="dashed", color="magenta", weight=3]; 2855 -> 3164[label="",style="dashed", color="magenta", weight=3]; 2856 -> 903[label="",style="dashed", color="red", weight=0]; 2856[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2856 -> 3165[label="",style="dashed", color="magenta", weight=3]; 2856 -> 3166[label="",style="dashed", color="magenta", weight=3]; 2857 -> 904[label="",style="dashed", color="red", weight=0]; 2857[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2857 -> 3167[label="",style="dashed", color="magenta", weight=3]; 2857 -> 3168[label="",style="dashed", color="magenta", weight=3]; 2858 -> 905[label="",style="dashed", color="red", weight=0]; 2858[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2858 -> 3169[label="",style="dashed", color="magenta", weight=3]; 2858 -> 3170[label="",style="dashed", color="magenta", weight=3]; 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="yvy30000",fontsize=16,color="green",shape="box"];2870[label="yvy40000",fontsize=16,color="green",shape="box"];2871[label="yvy30000",fontsize=16,color="green",shape="box"];2872[label="yvy40000",fontsize=16,color="green",shape="box"];2873[label="yvy30000",fontsize=16,color="green",shape="box"];2874[label="yvy40000",fontsize=16,color="green",shape="box"];2875[label="yvy30000",fontsize=16,color="green",shape="box"];2876[label="yvy40000",fontsize=16,color="green",shape="box"];2877[label="yvy30000",fontsize=16,color="green",shape="box"];2878[label="yvy40000",fontsize=16,color="green",shape="box"];2879[label="yvy30000",fontsize=16,color="green",shape="box"];2880[label="yvy40000",fontsize=16,color="green",shape="box"];2881[label="yvy30000",fontsize=16,color="green",shape="box"];2882[label="yvy40000",fontsize=16,color="green",shape="box"];2883[label="yvy30000",fontsize=16,color="green",shape="box"];2884[label="yvy40000",fontsize=16,color="green",shape="box"];2885[label="yvy30000",fontsize=16,color="green",shape="box"];2886[label="yvy40000",fontsize=16,color="green",shape="box"];2887[label="yvy30001",fontsize=16,color="green",shape="box"];2888[label="yvy40001",fontsize=16,color="green",shape="box"];2889[label="yvy30001",fontsize=16,color="green",shape="box"];2890[label="yvy40001",fontsize=16,color="green",shape="box"];2891[label="yvy30001",fontsize=16,color="green",shape="box"];2892[label="yvy40001",fontsize=16,color="green",shape="box"];2893[label="yvy30001",fontsize=16,color="green",shape="box"];2894[label="yvy40001",fontsize=16,color="green",shape="box"];2895[label="yvy30001",fontsize=16,color="green",shape="box"];2896[label="yvy40001",fontsize=16,color="green",shape="box"];2897[label="yvy30001",fontsize=16,color="green",shape="box"];2898[label="yvy40001",fontsize=16,color="green",shape="box"];2899[label="yvy30001",fontsize=16,color="green",shape="box"];2900[label="yvy40001",fontsize=16,color="green",shape="box"];2901[label="yvy30001",fontsize=16,color="green",shape="box"];2902[label="yvy40001",fontsize=16,color="green",shape="box"];2903[label="yvy30001",fontsize=16,color="green",shape="box"];2904[label="yvy40001",fontsize=16,color="green",shape="box"];2905[label="yvy30001",fontsize=16,color="green",shape="box"];2906[label="yvy40001",fontsize=16,color="green",shape="box"];2907[label="yvy30001",fontsize=16,color="green",shape="box"];2908[label="yvy40001",fontsize=16,color="green",shape="box"];2909[label="yvy30001",fontsize=16,color="green",shape="box"];2910[label="yvy40001",fontsize=16,color="green",shape="box"];2911[label="yvy30001",fontsize=16,color="green",shape="box"];2912[label="yvy40001",fontsize=16,color="green",shape="box"];2913[label="yvy30001",fontsize=16,color="green",shape="box"];2914[label="yvy40001",fontsize=16,color="green",shape="box"];2915[label="yvy30000",fontsize=16,color="green",shape="box"];2916[label="yvy40000",fontsize=16,color="green",shape="box"];2917[label="yvy30000",fontsize=16,color="green",shape="box"];2918[label="yvy40000",fontsize=16,color="green",shape="box"];2919[label="yvy30000",fontsize=16,color="green",shape="box"];2920[label="yvy40000",fontsize=16,color="green",shape="box"];2921[label="yvy30000",fontsize=16,color="green",shape="box"];2922[label="yvy40000",fontsize=16,color="green",shape="box"];2923[label="yvy30000",fontsize=16,color="green",shape="box"];2924[label="yvy40000",fontsize=16,color="green",shape="box"];2925[label="yvy30000",fontsize=16,color="green",shape="box"];2926[label="yvy40000",fontsize=16,color="green",shape="box"];2927[label="yvy30000",fontsize=16,color="green",shape="box"];2928[label="yvy40000",fontsize=16,color="green",shape="box"];2929[label="yvy30000",fontsize=16,color="green",shape="box"];2930[label="yvy40000",fontsize=16,color="green",shape="box"];2931[label="yvy30000",fontsize=16,color="green",shape="box"];2932[label="yvy40000",fontsize=16,color="green",shape="box"];2933[label="yvy30000",fontsize=16,color="green",shape="box"];2934[label="yvy40000",fontsize=16,color="green",shape="box"];2935[label="yvy30000",fontsize=16,color="green",shape="box"];2936[label="yvy40000",fontsize=16,color="green",shape="box"];2937[label="yvy30000",fontsize=16,color="green",shape="box"];2938[label="yvy40000",fontsize=16,color="green",shape="box"];2939[label="yvy30000",fontsize=16,color="green",shape="box"];2940[label="yvy40000",fontsize=16,color="green",shape="box"];2941[label="yvy30000",fontsize=16,color="green",shape="box"];2942[label="yvy40000",fontsize=16,color="green",shape="box"];2943[label="yvy30000",fontsize=16,color="green",shape="box"];2944[label="yvy40001",fontsize=16,color="green",shape="box"];2945[label="yvy30001",fontsize=16,color="green",shape="box"];2946[label="yvy40000",fontsize=16,color="green",shape="box"];2947[label="primEqNat (Succ yvy400000) (Succ yvy300000)",fontsize=16,color="black",shape="box"];2947 -> 3171[label="",style="solid", color="black", weight=3]; 2948[label="primEqNat (Succ yvy400000) Zero",fontsize=16,color="black",shape="box"];2948 -> 3172[label="",style="solid", color="black", weight=3]; 2949[label="primEqNat Zero (Succ yvy300000)",fontsize=16,color="black",shape="box"];2949 -> 3173[label="",style="solid", color="black", weight=3]; 2950[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2950 -> 3174[label="",style="solid", color="black", weight=3]; 2951[label="yvy30000",fontsize=16,color="green",shape="box"];2952[label="yvy40001",fontsize=16,color="green",shape="box"];2953[label="yvy30001",fontsize=16,color="green",shape="box"];2954[label="yvy40000",fontsize=16,color="green",shape="box"];2955 -> 2086[label="",style="dashed", color="red", weight=0]; 2955[label="primEqNat yvy400000 yvy300000",fontsize=16,color="magenta"];2955 -> 3175[label="",style="dashed", color="magenta", weight=3]; 2955 -> 3176[label="",style="dashed", color="magenta", weight=3]; 2956[label="False",fontsize=16,color="green",shape="box"];2957[label="False",fontsize=16,color="green",shape="box"];2958[label="True",fontsize=16,color="green",shape="box"];2959[label="False",fontsize=16,color="green",shape="box"];2960[label="True",fontsize=16,color="green",shape="box"];2961 -> 2086[label="",style="dashed", color="red", weight=0]; 2961[label="primEqNat yvy400000 yvy300000",fontsize=16,color="magenta"];2961 -> 3177[label="",style="dashed", color="magenta", weight=3]; 2961 -> 3178[label="",style="dashed", color="magenta", weight=3]; 2962[label="False",fontsize=16,color="green",shape="box"];2963[label="False",fontsize=16,color="green",shape="box"];2964[label="True",fontsize=16,color="green",shape="box"];2965[label="False",fontsize=16,color="green",shape="box"];2966[label="True",fontsize=16,color="green",shape="box"];2967[label="yvy30001",fontsize=16,color="green",shape="box"];2968[label="yvy40001",fontsize=16,color="green",shape="box"];2969[label="yvy30001",fontsize=16,color="green",shape="box"];2970[label="yvy40001",fontsize=16,color="green",shape="box"];2971[label="yvy30000",fontsize=16,color="green",shape="box"];2972[label="yvy40000",fontsize=16,color="green",shape="box"];2973[label="yvy30000",fontsize=16,color="green",shape="box"];2974[label="yvy40000",fontsize=16,color="green",shape="box"];2975[label="yvy90",fontsize=16,color="green",shape="box"];2976[label="yvy89",fontsize=16,color="green",shape="box"];2977 -> 3179[label="",style="dashed", color="red", weight=0]; 2977[label="not (yvy306 == GT)",fontsize=16,color="magenta"];2977 -> 3180[label="",style="dashed", color="magenta", weight=3]; 2978[label="True",fontsize=16,color="green",shape="box"];2979[label="True",fontsize=16,color="green",shape="box"];2980[label="False",fontsize=16,color="green",shape="box"];2981[label="True",fontsize=16,color="green",shape="box"];2982[label="yvy90",fontsize=16,color="green",shape="box"];2983[label="yvy89",fontsize=16,color="green",shape="box"];2984[label="yvy90",fontsize=16,color="green",shape="box"];2985[label="yvy89",fontsize=16,color="green",shape="box"];2986[label="yvy90",fontsize=16,color="green",shape="box"];2987[label="yvy89",fontsize=16,color="green",shape="box"];2988[label="yvy90",fontsize=16,color="green",shape="box"];2989[label="yvy89",fontsize=16,color="green",shape="box"];2990[label="yvy90",fontsize=16,color="green",shape="box"];2991[label="yvy89",fontsize=16,color="green",shape="box"];2992 -> 2348[label="",style="dashed", color="red", weight=0]; 2992[label="yvy890 < yvy900 || yvy890 == yvy900 && (yvy891 < yvy901 || yvy891 == yvy901 && yvy892 <= yvy902)",fontsize=16,color="magenta"];2992 -> 3189[label="",style="dashed", color="magenta", weight=3]; 2992 -> 3190[label="",style="dashed", color="magenta", weight=3]; 2993[label="True",fontsize=16,color="green",shape="box"];2994[label="True",fontsize=16,color="green",shape="box"];2995[label="False",fontsize=16,color="green",shape="box"];2996[label="yvy890 <= yvy900",fontsize=16,color="blue",shape="box"];4948[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4948[label="",style="solid", color="blue", weight=9]; 4948 -> 3191[label="",style="solid", color="blue", weight=3]; 4949[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4949[label="",style="solid", color="blue", weight=9]; 4949 -> 3192[label="",style="solid", color="blue", weight=3]; 4950[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4950[label="",style="solid", color="blue", weight=9]; 4950 -> 3193[label="",style="solid", color="blue", weight=3]; 4951[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4951[label="",style="solid", color="blue", weight=9]; 4951 -> 3194[label="",style="solid", color="blue", weight=3]; 4952[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4952[label="",style="solid", color="blue", weight=9]; 4952 -> 3195[label="",style="solid", color="blue", weight=3]; 4953[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4953[label="",style="solid", color="blue", weight=9]; 4953 -> 3196[label="",style="solid", color="blue", weight=3]; 4954[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4954[label="",style="solid", color="blue", weight=9]; 4954 -> 3197[label="",style="solid", color="blue", weight=3]; 4955[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4955[label="",style="solid", color="blue", weight=9]; 4955 -> 3198[label="",style="solid", color="blue", weight=3]; 4956[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4956[label="",style="solid", color="blue", weight=9]; 4956 -> 3199[label="",style="solid", color="blue", weight=3]; 4957[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4957[label="",style="solid", color="blue", weight=9]; 4957 -> 3200[label="",style="solid", color="blue", weight=3]; 4958[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4958[label="",style="solid", color="blue", weight=9]; 4958 -> 3201[label="",style="solid", color="blue", weight=3]; 4959[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4959[label="",style="solid", color="blue", weight=9]; 4959 -> 3202[label="",style="solid", color="blue", weight=3]; 4960[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4960[label="",style="solid", color="blue", weight=9]; 4960 -> 3203[label="",style="solid", color="blue", weight=3]; 4961[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4961[label="",style="solid", color="blue", weight=9]; 4961 -> 3204[label="",style="solid", color="blue", weight=3]; 2997[label="True",fontsize=16,color="green",shape="box"];2998[label="True",fontsize=16,color="green",shape="box"];2999[label="True",fontsize=16,color="green",shape="box"];3000[label="False",fontsize=16,color="green",shape="box"];3001[label="True",fontsize=16,color="green",shape="box"];3002[label="True",fontsize=16,color="green",shape="box"];3003[label="False",fontsize=16,color="green",shape="box"];3004[label="False",fontsize=16,color="green",shape="box"];3005[label="True",fontsize=16,color="green",shape="box"];3006[label="yvy90",fontsize=16,color="green",shape="box"];3007[label="yvy89",fontsize=16,color="green",shape="box"];3008[label="yvy90",fontsize=16,color="green",shape="box"];3009[label="yvy89",fontsize=16,color="green",shape="box"];3010[label="yvy890 <= yvy900",fontsize=16,color="blue",shape="box"];4962[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4962[label="",style="solid", color="blue", weight=9]; 4962 -> 3205[label="",style="solid", color="blue", weight=3]; 4963[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4963[label="",style="solid", color="blue", weight=9]; 4963 -> 3206[label="",style="solid", color="blue", weight=3]; 4964[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4964[label="",style="solid", color="blue", weight=9]; 4964 -> 3207[label="",style="solid", color="blue", weight=3]; 4965[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4965[label="",style="solid", color="blue", weight=9]; 4965 -> 3208[label="",style="solid", color="blue", weight=3]; 4966[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4966[label="",style="solid", color="blue", weight=9]; 4966 -> 3209[label="",style="solid", color="blue", weight=3]; 4967[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4967[label="",style="solid", color="blue", weight=9]; 4967 -> 3210[label="",style="solid", color="blue", weight=3]; 4968[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4968[label="",style="solid", color="blue", weight=9]; 4968 -> 3211[label="",style="solid", color="blue", weight=3]; 4969[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4969[label="",style="solid", color="blue", weight=9]; 4969 -> 3212[label="",style="solid", color="blue", weight=3]; 4970[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4970[label="",style="solid", color="blue", weight=9]; 4970 -> 3213[label="",style="solid", color="blue", weight=3]; 4971[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4971[label="",style="solid", color="blue", weight=9]; 4971 -> 3214[label="",style="solid", color="blue", weight=3]; 4972[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4972[label="",style="solid", color="blue", weight=9]; 4972 -> 3215[label="",style="solid", color="blue", weight=3]; 4973[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4973[label="",style="solid", color="blue", weight=9]; 4973 -> 3216[label="",style="solid", color="blue", weight=3]; 4974[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4974[label="",style="solid", color="blue", weight=9]; 4974 -> 3217[label="",style="solid", color="blue", weight=3]; 4975[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4975[label="",style="solid", color="blue", weight=9]; 4975 -> 3218[label="",style="solid", color="blue", weight=3]; 3011[label="True",fontsize=16,color="green",shape="box"];3012[label="False",fontsize=16,color="green",shape="box"];3013[label="yvy890 <= yvy900",fontsize=16,color="blue",shape="box"];4976[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4976[label="",style="solid", color="blue", weight=9]; 4976 -> 3219[label="",style="solid", color="blue", weight=3]; 4977[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4977[label="",style="solid", color="blue", weight=9]; 4977 -> 3220[label="",style="solid", color="blue", weight=3]; 4978[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4978[label="",style="solid", color="blue", weight=9]; 4978 -> 3221[label="",style="solid", color="blue", weight=3]; 4979[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4979[label="",style="solid", color="blue", weight=9]; 4979 -> 3222[label="",style="solid", color="blue", weight=3]; 4980[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4980[label="",style="solid", color="blue", weight=9]; 4980 -> 3223[label="",style="solid", color="blue", weight=3]; 4981[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4981[label="",style="solid", color="blue", weight=9]; 4981 -> 3224[label="",style="solid", color="blue", weight=3]; 4982[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4982[label="",style="solid", color="blue", weight=9]; 4982 -> 3225[label="",style="solid", color="blue", weight=3]; 4983[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4983[label="",style="solid", color="blue", weight=9]; 4983 -> 3226[label="",style="solid", color="blue", weight=3]; 4984[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4984[label="",style="solid", color="blue", weight=9]; 4984 -> 3227[label="",style="solid", color="blue", weight=3]; 4985[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4985[label="",style="solid", color="blue", weight=9]; 4985 -> 3228[label="",style="solid", color="blue", weight=3]; 4986[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4986[label="",style="solid", color="blue", weight=9]; 4986 -> 3229[label="",style="solid", color="blue", weight=3]; 4987[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4987[label="",style="solid", color="blue", weight=9]; 4987 -> 3230[label="",style="solid", color="blue", weight=3]; 4988[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4988[label="",style="solid", color="blue", weight=9]; 4988 -> 3231[label="",style="solid", color="blue", weight=3]; 4989[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4989[label="",style="solid", color="blue", weight=9]; 4989 -> 3232[label="",style="solid", color="blue", weight=3]; 3014 -> 2348[label="",style="dashed", color="red", weight=0]; 3014[label="yvy890 < yvy900 || yvy890 == yvy900 && yvy891 <= yvy901",fontsize=16,color="magenta"];3014 -> 3233[label="",style="dashed", color="magenta", weight=3]; 3014 -> 3234[label="",style="dashed", color="magenta", weight=3]; 3015[label="compare0 (yvy233,yvy234) (yvy235,yvy236) otherwise",fontsize=16,color="black",shape="box"];3015 -> 3235[label="",style="solid", color="black", weight=3]; 3016[label="LT",fontsize=16,color="green",shape="box"];3017[label="Pos (primPlusNat Zero Zero)",fontsize=16,color="green",shape="box"];3017 -> 3236[label="",style="dashed", color="green", weight=3]; 3018[label="primPlusInt (Pos Zero) (Pos yvy5420)",fontsize=16,color="black",shape="box"];3018 -> 3237[label="",style="solid", color="black", weight=3]; 3019[label="primPlusInt (Pos Zero) (Neg yvy5420)",fontsize=16,color="black",shape="box"];3019 -> 3238[label="",style="solid", color="black", weight=3]; 3020[label="primPlusInt (Pos yvy11820) (Pos Zero)",fontsize=16,color="black",shape="box"];3020 -> 3239[label="",style="solid", color="black", weight=3]; 3021[label="primPlusInt (Pos yvy11820) yvy542",fontsize=16,color="burlywood",shape="triangle"];4990[label="yvy542/Pos yvy5420",fontsize=10,color="white",style="solid",shape="box"];3021 -> 4990[label="",style="solid", color="burlywood", weight=9]; 4990 -> 3240[label="",style="solid", color="burlywood", weight=3]; 4991[label="yvy542/Neg yvy5420",fontsize=10,color="white",style="solid",shape="box"];3021 -> 4991[label="",style="solid", color="burlywood", weight=9]; 4991 -> 3241[label="",style="solid", color="burlywood", weight=3]; 3022[label="primPlusInt (Neg yvy11820) (Pos Zero)",fontsize=16,color="black",shape="box"];3022 -> 3242[label="",style="solid", color="black", weight=3]; 3023[label="primPlusInt (Neg yvy11820) yvy542",fontsize=16,color="burlywood",shape="triangle"];4992[label="yvy542/Pos yvy5420",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4992[label="",style="solid", color="burlywood", weight=9]; 4992 -> 3243[label="",style="solid", color="burlywood", weight=3]; 4993[label="yvy542/Neg yvy5420",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4993[label="",style="solid", color="burlywood", weight=9]; 4993 -> 3244[label="",style="solid", color="burlywood", weight=3]; 4127 -> 4129[label="",style="dashed", color="red", weight=0]; 4127[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy363 yvy361 yvy364) (FiniteMap.mkBranchRight_size yvy363 yvy361 yvy364)",fontsize=16,color="magenta"];4127 -> 4130[label="",style="dashed", color="magenta", weight=3]; 3256[label="yvy118",fontsize=16,color="green",shape="box"];3051 -> 3037[label="",style="dashed", color="red", weight=0]; 3051[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54",fontsize=16,color="magenta"];3052 -> 1240[label="",style="dashed", color="red", weight=0]; 3052[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3187[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 otherwise",fontsize=16,color="black",shape="box"];3187 -> 3260[label="",style="solid", color="black", weight=3]; 3188[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 yvy118 yvy54 yvy118 yvy54 yvy118",fontsize=16,color="burlywood",shape="box"];4994[label="yvy118/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3188 -> 4994[label="",style="solid", color="burlywood", weight=9]; 4994 -> 3261[label="",style="solid", color="burlywood", weight=3]; 4995[label="yvy118/FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184",fontsize=10,color="white",style="solid",shape="box"];3188 -> 4995[label="",style="solid", color="burlywood", weight=9]; 4995 -> 3262[label="",style="solid", color="burlywood", weight=3]; 3053 -> 3263[label="",style="dashed", color="red", weight=0]; 3053[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"];3053 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3058[label="yvy154",fontsize=16,color="green",shape="box"];3059[label="yvy157",fontsize=16,color="green",shape="box"];3060[label="yvy154",fontsize=16,color="green",shape="box"];3061[label="yvy157",fontsize=16,color="green",shape="box"];3062[label="yvy154",fontsize=16,color="green",shape="box"];3063[label="yvy157",fontsize=16,color="green",shape="box"];3064[label="yvy154",fontsize=16,color="green",shape="box"];3065[label="yvy157",fontsize=16,color="green",shape="box"];3066[label="yvy154",fontsize=16,color="green",shape="box"];3067[label="yvy157",fontsize=16,color="green",shape="box"];3068[label="yvy154",fontsize=16,color="green",shape="box"];3069[label="yvy157",fontsize=16,color="green",shape="box"];3070[label="yvy154",fontsize=16,color="green",shape="box"];3071[label="yvy157",fontsize=16,color="green",shape="box"];3072[label="yvy154",fontsize=16,color="green",shape="box"];3073[label="yvy157",fontsize=16,color="green",shape="box"];3074[label="yvy154",fontsize=16,color="green",shape="box"];3075[label="yvy157",fontsize=16,color="green",shape="box"];3076[label="yvy154",fontsize=16,color="green",shape="box"];3077[label="yvy157",fontsize=16,color="green",shape="box"];3078[label="yvy154",fontsize=16,color="green",shape="box"];3079[label="yvy157",fontsize=16,color="green",shape="box"];3080[label="yvy154",fontsize=16,color="green",shape="box"];3081[label="yvy157",fontsize=16,color="green",shape="box"];3082[label="yvy154",fontsize=16,color="green",shape="box"];3083[label="yvy157",fontsize=16,color="green",shape="box"];3084[label="yvy154",fontsize=16,color="green",shape="box"];3085[label="yvy157",fontsize=16,color="green",shape="box"];3086[label="yvy156",fontsize=16,color="green",shape="box"];3087[label="yvy153",fontsize=16,color="green",shape="box"];3088[label="yvy156",fontsize=16,color="green",shape="box"];3089[label="yvy153",fontsize=16,color="green",shape="box"];3090[label="yvy156",fontsize=16,color="green",shape="box"];3091[label="yvy153",fontsize=16,color="green",shape="box"];3092[label="yvy156",fontsize=16,color="green",shape="box"];3093[label="yvy153",fontsize=16,color="green",shape="box"];3094[label="yvy156",fontsize=16,color="green",shape="box"];3095[label="yvy153",fontsize=16,color="green",shape="box"];3096[label="yvy156",fontsize=16,color="green",shape="box"];3097[label="yvy153",fontsize=16,color="green",shape="box"];3098[label="yvy156",fontsize=16,color="green",shape="box"];3099[label="yvy153",fontsize=16,color="green",shape="box"];3100[label="yvy156",fontsize=16,color="green",shape="box"];3101[label="yvy153",fontsize=16,color="green",shape="box"];3102[label="yvy156",fontsize=16,color="green",shape="box"];3103[label="yvy153",fontsize=16,color="green",shape="box"];3104[label="yvy156",fontsize=16,color="green",shape="box"];3105[label="yvy153",fontsize=16,color="green",shape="box"];3106[label="yvy156",fontsize=16,color="green",shape="box"];3107[label="yvy153",fontsize=16,color="green",shape="box"];3108[label="yvy156",fontsize=16,color="green",shape="box"];3109[label="yvy153",fontsize=16,color="green",shape="box"];3110[label="yvy156",fontsize=16,color="green",shape="box"];3111[label="yvy153",fontsize=16,color="green",shape="box"];3112[label="yvy156",fontsize=16,color="green",shape="box"];3113[label="yvy153",fontsize=16,color="green",shape="box"];3114[label="compare0 (yvy218,yvy219,yvy220) (yvy221,yvy222,yvy223) True",fontsize=16,color="black",shape="box"];3114 -> 3273[label="",style="solid", color="black", weight=3]; 3115[label="yvy30002",fontsize=16,color="green",shape="box"];3116[label="yvy40002",fontsize=16,color="green",shape="box"];3117[label="yvy30002",fontsize=16,color="green",shape="box"];3118[label="yvy40002",fontsize=16,color="green",shape="box"];3119[label="yvy30002",fontsize=16,color="green",shape="box"];3120[label="yvy40002",fontsize=16,color="green",shape="box"];3121[label="yvy30002",fontsize=16,color="green",shape="box"];3122[label="yvy40002",fontsize=16,color="green",shape="box"];3123[label="yvy30002",fontsize=16,color="green",shape="box"];3124[label="yvy40002",fontsize=16,color="green",shape="box"];3125[label="yvy30002",fontsize=16,color="green",shape="box"];3126[label="yvy40002",fontsize=16,color="green",shape="box"];3127[label="yvy30002",fontsize=16,color="green",shape="box"];3128[label="yvy40002",fontsize=16,color="green",shape="box"];3129[label="yvy30002",fontsize=16,color="green",shape="box"];3130[label="yvy40002",fontsize=16,color="green",shape="box"];3131[label="yvy30002",fontsize=16,color="green",shape="box"];3132[label="yvy40002",fontsize=16,color="green",shape="box"];3133[label="yvy30002",fontsize=16,color="green",shape="box"];3134[label="yvy40002",fontsize=16,color="green",shape="box"];3135[label="yvy30002",fontsize=16,color="green",shape="box"];3136[label="yvy40002",fontsize=16,color="green",shape="box"];3137[label="yvy30002",fontsize=16,color="green",shape="box"];3138[label="yvy40002",fontsize=16,color="green",shape="box"];3139[label="yvy30002",fontsize=16,color="green",shape="box"];3140[label="yvy40002",fontsize=16,color="green",shape="box"];3141[label="yvy30002",fontsize=16,color="green",shape="box"];3142[label="yvy40002",fontsize=16,color="green",shape="box"];3143[label="yvy30001",fontsize=16,color="green",shape="box"];3144[label="yvy40001",fontsize=16,color="green",shape="box"];3145[label="yvy30001",fontsize=16,color="green",shape="box"];3146[label="yvy40001",fontsize=16,color="green",shape="box"];3147[label="yvy30001",fontsize=16,color="green",shape="box"];3148[label="yvy40001",fontsize=16,color="green",shape="box"];3149[label="yvy30001",fontsize=16,color="green",shape="box"];3150[label="yvy40001",fontsize=16,color="green",shape="box"];3151[label="yvy30001",fontsize=16,color="green",shape="box"];3152[label="yvy40001",fontsize=16,color="green",shape="box"];3153[label="yvy30001",fontsize=16,color="green",shape="box"];3154[label="yvy40001",fontsize=16,color="green",shape="box"];3155[label="yvy30001",fontsize=16,color="green",shape="box"];3156[label="yvy40001",fontsize=16,color="green",shape="box"];3157[label="yvy30001",fontsize=16,color="green",shape="box"];3158[label="yvy40001",fontsize=16,color="green",shape="box"];3159[label="yvy30001",fontsize=16,color="green",shape="box"];3160[label="yvy40001",fontsize=16,color="green",shape="box"];3161[label="yvy30001",fontsize=16,color="green",shape="box"];3162[label="yvy40001",fontsize=16,color="green",shape="box"];3163[label="yvy30001",fontsize=16,color="green",shape="box"];3164[label="yvy40001",fontsize=16,color="green",shape="box"];3165[label="yvy30001",fontsize=16,color="green",shape="box"];3166[label="yvy40001",fontsize=16,color="green",shape="box"];3167[label="yvy30001",fontsize=16,color="green",shape="box"];3168[label="yvy40001",fontsize=16,color="green",shape="box"];3169[label="yvy30001",fontsize=16,color="green",shape="box"];3170[label="yvy40001",fontsize=16,color="green",shape="box"];3171 -> 2086[label="",style="dashed", color="red", weight=0]; 3171[label="primEqNat yvy400000 yvy300000",fontsize=16,color="magenta"];3171 -> 3274[label="",style="dashed", color="magenta", weight=3]; 3171 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3172[label="False",fontsize=16,color="green",shape="box"];3173[label="False",fontsize=16,color="green",shape="box"];3174[label="True",fontsize=16,color="green",shape="box"];3175[label="yvy400000",fontsize=16,color="green",shape="box"];3176[label="yvy300000",fontsize=16,color="green",shape="box"];3177[label="yvy400000",fontsize=16,color="green",shape="box"];3178[label="yvy300000",fontsize=16,color="green",shape="box"];3180 -> 902[label="",style="dashed", color="red", weight=0]; 3180[label="yvy306 == GT",fontsize=16,color="magenta"];3180 -> 3276[label="",style="dashed", color="magenta", weight=3]; 3180 -> 3277[label="",style="dashed", color="magenta", weight=3]; 3179[label="not yvy314",fontsize=16,color="burlywood",shape="triangle"];4996[label="yvy314/False",fontsize=10,color="white",style="solid",shape="box"];3179 -> 4996[label="",style="solid", color="burlywood", weight=9]; 4996 -> 3278[label="",style="solid", color="burlywood", weight=3]; 4997[label="yvy314/True",fontsize=10,color="white",style="solid",shape="box"];3179 -> 4997[label="",style="solid", color="burlywood", weight=9]; 4997 -> 3279[label="",style="solid", color="burlywood", weight=3]; 3189 -> 1570[label="",style="dashed", color="red", weight=0]; 3189[label="yvy890 == yvy900 && (yvy891 < yvy901 || yvy891 == yvy901 && yvy892 <= yvy902)",fontsize=16,color="magenta"];3189 -> 3280[label="",style="dashed", color="magenta", weight=3]; 3189 -> 3281[label="",style="dashed", color="magenta", weight=3]; 3190[label="yvy890 < yvy900",fontsize=16,color="blue",shape="box"];4998[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3190 -> 4998[label="",style="solid", color="blue", weight=9]; 4998 -> 3282[label="",style="solid", color="blue", weight=3]; 4999[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3190 -> 4999[label="",style="solid", color="blue", weight=9]; 4999 -> 3283[label="",style="solid", color="blue", weight=3]; 5000[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3190 -> 5000[label="",style="solid", color="blue", weight=9]; 5000 -> 3284[label="",style="solid", color="blue", weight=3]; 5001[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3190 -> 5001[label="",style="solid", color="blue", weight=9]; 5001 -> 3285[label="",style="solid", color="blue", weight=3]; 5002[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3190 -> 5002[label="",style="solid", color="blue", weight=9]; 5002 -> 3286[label="",style="solid", color="blue", weight=3]; 5003[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3190 -> 5003[label="",style="solid", color="blue", weight=9]; 5003 -> 3287[label="",style="solid", color="blue", weight=3]; 5004[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3190 -> 5004[label="",style="solid", color="blue", weight=9]; 5004 -> 3288[label="",style="solid", color="blue", weight=3]; 5005[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3190 -> 5005[label="",style="solid", color="blue", weight=9]; 5005 -> 3289[label="",style="solid", color="blue", weight=3]; 5006[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3190 -> 5006[label="",style="solid", color="blue", weight=9]; 5006 -> 3290[label="",style="solid", color="blue", weight=3]; 5007[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3190 -> 5007[label="",style="solid", color="blue", weight=9]; 5007 -> 3291[label="",style="solid", color="blue", weight=3]; 5008[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3190 -> 5008[label="",style="solid", color="blue", weight=9]; 5008 -> 3292[label="",style="solid", color="blue", weight=3]; 5009[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3190 -> 5009[label="",style="solid", color="blue", weight=9]; 5009 -> 3293[label="",style="solid", color="blue", weight=3]; 5010[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3190 -> 5010[label="",style="solid", color="blue", weight=9]; 5010 -> 3294[label="",style="solid", color="blue", weight=3]; 5011[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3190 -> 5011[label="",style="solid", color="blue", weight=9]; 5011 -> 3295[label="",style="solid", color="blue", weight=3]; 3191 -> 1891[label="",style="dashed", color="red", weight=0]; 3191[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3191 -> 3296[label="",style="dashed", color="magenta", weight=3]; 3191 -> 3297[label="",style="dashed", color="magenta", weight=3]; 3192 -> 1892[label="",style="dashed", color="red", weight=0]; 3192[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3192 -> 3298[label="",style="dashed", color="magenta", weight=3]; 3192 -> 3299[label="",style="dashed", color="magenta", weight=3]; 3193 -> 1893[label="",style="dashed", color="red", weight=0]; 3193[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3193 -> 3300[label="",style="dashed", color="magenta", weight=3]; 3193 -> 3301[label="",style="dashed", color="magenta", weight=3]; 3194 -> 1894[label="",style="dashed", color="red", weight=0]; 3194[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3194 -> 3302[label="",style="dashed", color="magenta", weight=3]; 3194 -> 3303[label="",style="dashed", color="magenta", weight=3]; 3195 -> 1895[label="",style="dashed", color="red", weight=0]; 3195[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3195 -> 3304[label="",style="dashed", color="magenta", weight=3]; 3195 -> 3305[label="",style="dashed", color="magenta", weight=3]; 3196 -> 1896[label="",style="dashed", color="red", weight=0]; 3196[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3196 -> 3306[label="",style="dashed", color="magenta", weight=3]; 3196 -> 3307[label="",style="dashed", color="magenta", weight=3]; 3197 -> 1897[label="",style="dashed", color="red", weight=0]; 3197[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3197 -> 3308[label="",style="dashed", color="magenta", weight=3]; 3197 -> 3309[label="",style="dashed", color="magenta", weight=3]; 3198 -> 1898[label="",style="dashed", color="red", weight=0]; 3198[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3198 -> 3310[label="",style="dashed", color="magenta", weight=3]; 3198 -> 3311[label="",style="dashed", color="magenta", weight=3]; 3199 -> 1899[label="",style="dashed", color="red", weight=0]; 3199[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3199 -> 3312[label="",style="dashed", color="magenta", weight=3]; 3199 -> 3313[label="",style="dashed", color="magenta", weight=3]; 3200 -> 1900[label="",style="dashed", color="red", weight=0]; 3200[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3200 -> 3314[label="",style="dashed", color="magenta", weight=3]; 3200 -> 3315[label="",style="dashed", color="magenta", weight=3]; 3201 -> 1901[label="",style="dashed", color="red", weight=0]; 3201[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3201 -> 3316[label="",style="dashed", color="magenta", weight=3]; 3201 -> 3317[label="",style="dashed", color="magenta", weight=3]; 3202 -> 1902[label="",style="dashed", color="red", weight=0]; 3202[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3202 -> 3318[label="",style="dashed", color="magenta", weight=3]; 3202 -> 3319[label="",style="dashed", color="magenta", weight=3]; 3203 -> 1903[label="",style="dashed", color="red", weight=0]; 3203[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3203 -> 3320[label="",style="dashed", color="magenta", weight=3]; 3203 -> 3321[label="",style="dashed", color="magenta", weight=3]; 3204 -> 1904[label="",style="dashed", color="red", weight=0]; 3204[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3204 -> 3322[label="",style="dashed", color="magenta", weight=3]; 3204 -> 3323[label="",style="dashed", color="magenta", weight=3]; 3205 -> 1891[label="",style="dashed", color="red", weight=0]; 3205[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3205 -> 3324[label="",style="dashed", color="magenta", weight=3]; 3205 -> 3325[label="",style="dashed", color="magenta", weight=3]; 3206 -> 1892[label="",style="dashed", color="red", weight=0]; 3206[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3206 -> 3326[label="",style="dashed", color="magenta", weight=3]; 3206 -> 3327[label="",style="dashed", color="magenta", weight=3]; 3207 -> 1893[label="",style="dashed", color="red", weight=0]; 3207[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3207 -> 3328[label="",style="dashed", color="magenta", weight=3]; 3207 -> 3329[label="",style="dashed", color="magenta", weight=3]; 3208 -> 1894[label="",style="dashed", color="red", weight=0]; 3208[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3208 -> 3330[label="",style="dashed", color="magenta", weight=3]; 3208 -> 3331[label="",style="dashed", color="magenta", weight=3]; 3209 -> 1895[label="",style="dashed", color="red", weight=0]; 3209[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3209 -> 3332[label="",style="dashed", color="magenta", weight=3]; 3209 -> 3333[label="",style="dashed", color="magenta", weight=3]; 3210 -> 1896[label="",style="dashed", color="red", weight=0]; 3210[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3210 -> 3334[label="",style="dashed", color="magenta", weight=3]; 3210 -> 3335[label="",style="dashed", color="magenta", weight=3]; 3211 -> 1897[label="",style="dashed", color="red", weight=0]; 3211[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3211 -> 3336[label="",style="dashed", color="magenta", weight=3]; 3211 -> 3337[label="",style="dashed", color="magenta", weight=3]; 3212 -> 1898[label="",style="dashed", color="red", weight=0]; 3212[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3212 -> 3338[label="",style="dashed", color="magenta", weight=3]; 3212 -> 3339[label="",style="dashed", color="magenta", weight=3]; 3213 -> 1899[label="",style="dashed", color="red", weight=0]; 3213[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3213 -> 3340[label="",style="dashed", color="magenta", weight=3]; 3213 -> 3341[label="",style="dashed", color="magenta", weight=3]; 3214 -> 1900[label="",style="dashed", color="red", weight=0]; 3214[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3214 -> 3342[label="",style="dashed", color="magenta", weight=3]; 3214 -> 3343[label="",style="dashed", color="magenta", weight=3]; 3215 -> 1901[label="",style="dashed", color="red", weight=0]; 3215[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3215 -> 3344[label="",style="dashed", color="magenta", weight=3]; 3215 -> 3345[label="",style="dashed", color="magenta", weight=3]; 3216 -> 1902[label="",style="dashed", color="red", weight=0]; 3216[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3216 -> 3346[label="",style="dashed", color="magenta", weight=3]; 3216 -> 3347[label="",style="dashed", color="magenta", weight=3]; 3217 -> 1903[label="",style="dashed", color="red", weight=0]; 3217[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3217 -> 3348[label="",style="dashed", color="magenta", weight=3]; 3217 -> 3349[label="",style="dashed", color="magenta", weight=3]; 3218 -> 1904[label="",style="dashed", color="red", weight=0]; 3218[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3218 -> 3350[label="",style="dashed", color="magenta", weight=3]; 3218 -> 3351[label="",style="dashed", color="magenta", weight=3]; 3219 -> 1891[label="",style="dashed", color="red", weight=0]; 3219[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3219 -> 3352[label="",style="dashed", color="magenta", weight=3]; 3219 -> 3353[label="",style="dashed", color="magenta", weight=3]; 3220 -> 1892[label="",style="dashed", color="red", weight=0]; 3220[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3220 -> 3354[label="",style="dashed", color="magenta", weight=3]; 3220 -> 3355[label="",style="dashed", color="magenta", weight=3]; 3221 -> 1893[label="",style="dashed", color="red", weight=0]; 3221[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3221 -> 3356[label="",style="dashed", color="magenta", weight=3]; 3221 -> 3357[label="",style="dashed", color="magenta", weight=3]; 3222 -> 1894[label="",style="dashed", color="red", weight=0]; 3222[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3222 -> 3358[label="",style="dashed", color="magenta", weight=3]; 3222 -> 3359[label="",style="dashed", color="magenta", weight=3]; 3223 -> 1895[label="",style="dashed", color="red", weight=0]; 3223[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3223 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3223 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3224 -> 1896[label="",style="dashed", color="red", weight=0]; 3224[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3224 -> 3362[label="",style="dashed", color="magenta", weight=3]; 3224 -> 3363[label="",style="dashed", color="magenta", weight=3]; 3225 -> 1897[label="",style="dashed", color="red", weight=0]; 3225[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3225 -> 3364[label="",style="dashed", color="magenta", weight=3]; 3225 -> 3365[label="",style="dashed", color="magenta", weight=3]; 3226 -> 1898[label="",style="dashed", color="red", weight=0]; 3226[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3226 -> 3366[label="",style="dashed", color="magenta", weight=3]; 3226 -> 3367[label="",style="dashed", color="magenta", weight=3]; 3227 -> 1899[label="",style="dashed", color="red", weight=0]; 3227[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3227 -> 3368[label="",style="dashed", color="magenta", weight=3]; 3227 -> 3369[label="",style="dashed", color="magenta", weight=3]; 3228 -> 1900[label="",style="dashed", color="red", weight=0]; 3228[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3228 -> 3370[label="",style="dashed", color="magenta", weight=3]; 3228 -> 3371[label="",style="dashed", color="magenta", weight=3]; 3229 -> 1901[label="",style="dashed", color="red", weight=0]; 3229[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3229 -> 3372[label="",style="dashed", color="magenta", weight=3]; 3229 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3230 -> 1902[label="",style="dashed", color="red", weight=0]; 3230[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3230 -> 3374[label="",style="dashed", color="magenta", weight=3]; 3230 -> 3375[label="",style="dashed", color="magenta", weight=3]; 3231 -> 1903[label="",style="dashed", color="red", weight=0]; 3231[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3231 -> 3376[label="",style="dashed", color="magenta", weight=3]; 3231 -> 3377[label="",style="dashed", color="magenta", weight=3]; 3232 -> 1904[label="",style="dashed", color="red", weight=0]; 3232[label="yvy890 <= yvy900",fontsize=16,color="magenta"];3232 -> 3378[label="",style="dashed", color="magenta", weight=3]; 3232 -> 3379[label="",style="dashed", color="magenta", weight=3]; 3233 -> 1570[label="",style="dashed", color="red", weight=0]; 3233[label="yvy890 == yvy900 && yvy891 <= yvy901",fontsize=16,color="magenta"];3233 -> 3380[label="",style="dashed", color="magenta", weight=3]; 3233 -> 3381[label="",style="dashed", color="magenta", weight=3]; 3234[label="yvy890 < yvy900",fontsize=16,color="blue",shape="box"];5012[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3234 -> 5012[label="",style="solid", color="blue", weight=9]; 5012 -> 3382[label="",style="solid", color="blue", weight=3]; 5013[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3234 -> 5013[label="",style="solid", color="blue", weight=9]; 5013 -> 3383[label="",style="solid", color="blue", weight=3]; 5014[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3234 -> 5014[label="",style="solid", color="blue", weight=9]; 5014 -> 3384[label="",style="solid", color="blue", weight=3]; 5015[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3234 -> 5015[label="",style="solid", color="blue", weight=9]; 5015 -> 3385[label="",style="solid", color="blue", weight=3]; 5016[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3234 -> 5016[label="",style="solid", color="blue", weight=9]; 5016 -> 3386[label="",style="solid", color="blue", weight=3]; 5017[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3234 -> 5017[label="",style="solid", color="blue", weight=9]; 5017 -> 3387[label="",style="solid", color="blue", weight=3]; 5018[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3234 -> 5018[label="",style="solid", color="blue", weight=9]; 5018 -> 3388[label="",style="solid", color="blue", weight=3]; 5019[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3234 -> 5019[label="",style="solid", color="blue", weight=9]; 5019 -> 3389[label="",style="solid", color="blue", weight=3]; 5020[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3234 -> 5020[label="",style="solid", color="blue", weight=9]; 5020 -> 3390[label="",style="solid", color="blue", weight=3]; 5021[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3234 -> 5021[label="",style="solid", color="blue", weight=9]; 5021 -> 3391[label="",style="solid", color="blue", weight=3]; 5022[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3234 -> 5022[label="",style="solid", color="blue", weight=9]; 5022 -> 3392[label="",style="solid", color="blue", weight=3]; 5023[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3234 -> 5023[label="",style="solid", color="blue", weight=9]; 5023 -> 3393[label="",style="solid", color="blue", weight=3]; 5024[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3234 -> 5024[label="",style="solid", color="blue", weight=9]; 5024 -> 3394[label="",style="solid", color="blue", weight=3]; 5025[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3234 -> 5025[label="",style="solid", color="blue", weight=9]; 5025 -> 3395[label="",style="solid", color="blue", weight=3]; 3235[label="compare0 (yvy233,yvy234) (yvy235,yvy236) True",fontsize=16,color="black",shape="box"];3235 -> 3396[label="",style="solid", color="black", weight=3]; 3236 -> 3043[label="",style="dashed", color="red", weight=0]; 3236[label="primPlusNat Zero Zero",fontsize=16,color="magenta"];3236 -> 3397[label="",style="dashed", color="magenta", weight=3]; 3236 -> 3398[label="",style="dashed", color="magenta", weight=3]; 3237[label="Pos (primPlusNat Zero yvy5420)",fontsize=16,color="green",shape="box"];3237 -> 3399[label="",style="dashed", color="green", weight=3]; 3238[label="primMinusNat Zero yvy5420",fontsize=16,color="burlywood",shape="triangle"];5026[label="yvy5420/Succ yvy54200",fontsize=10,color="white",style="solid",shape="box"];3238 -> 5026[label="",style="solid", color="burlywood", weight=9]; 5026 -> 3400[label="",style="solid", color="burlywood", weight=3]; 5027[label="yvy5420/Zero",fontsize=10,color="white",style="solid",shape="box"];3238 -> 5027[label="",style="solid", color="burlywood", weight=9]; 5027 -> 3401[label="",style="solid", color="burlywood", weight=3]; 3239[label="Pos (primPlusNat yvy11820 Zero)",fontsize=16,color="green",shape="box"];3239 -> 3402[label="",style="dashed", color="green", weight=3]; 3240[label="primPlusInt (Pos yvy11820) (Pos yvy5420)",fontsize=16,color="black",shape="box"];3240 -> 3403[label="",style="solid", color="black", weight=3]; 3241[label="primPlusInt (Pos yvy11820) (Neg yvy5420)",fontsize=16,color="black",shape="box"];3241 -> 3404[label="",style="solid", color="black", weight=3]; 3242 -> 3238[label="",style="dashed", color="red", weight=0]; 3242[label="primMinusNat Zero yvy11820",fontsize=16,color="magenta"];3242 -> 3405[label="",style="dashed", color="magenta", weight=3]; 3243[label="primPlusInt (Neg yvy11820) (Pos yvy5420)",fontsize=16,color="black",shape="box"];3243 -> 3406[label="",style="solid", color="black", weight=3]; 3244[label="primPlusInt (Neg yvy11820) (Neg yvy5420)",fontsize=16,color="black",shape="box"];3244 -> 3407[label="",style="solid", color="black", weight=3]; 4130[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy363 yvy361 yvy364",fontsize=16,color="black",shape="box"];4130 -> 4132[label="",style="solid", color="black", weight=3]; 4129[label="primPlusInt yvy365 (FiniteMap.mkBranchRight_size yvy363 yvy361 yvy364)",fontsize=16,color="burlywood",shape="triangle"];5028[label="yvy365/Pos yvy3650",fontsize=10,color="white",style="solid",shape="box"];4129 -> 5028[label="",style="solid", color="burlywood", weight=9]; 5028 -> 4133[label="",style="solid", color="burlywood", weight=3]; 5029[label="yvy365/Neg yvy3650",fontsize=10,color="white",style="solid",shape="box"];4129 -> 5029[label="",style="solid", color="burlywood", weight=9]; 5029 -> 4134[label="",style="solid", color="burlywood", weight=3]; 3260[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 True",fontsize=16,color="black",shape="box"];3260 -> 3412[label="",style="solid", color="black", weight=3]; 3261[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 FiniteMap.EmptyFM yvy54 FiniteMap.EmptyFM yvy54 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3261 -> 3413[label="",style="solid", color="black", weight=3]; 3262[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"];3262 -> 3414[label="",style="solid", color="black", weight=3]; 3264 -> 1875[label="",style="dashed", color="red", weight=0]; 3264[label="FiniteMap.sizeFM yvy543 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3264 -> 3415[label="",style="dashed", color="magenta", weight=3]; 3264 -> 3416[label="",style="dashed", color="magenta", weight=3]; 3263[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 yvy316",fontsize=16,color="burlywood",shape="triangle"];5030[label="yvy316/False",fontsize=10,color="white",style="solid",shape="box"];3263 -> 5030[label="",style="solid", color="burlywood", weight=9]; 5030 -> 3417[label="",style="solid", color="burlywood", weight=3]; 5031[label="yvy316/True",fontsize=10,color="white",style="solid",shape="box"];3263 -> 5031[label="",style="solid", color="burlywood", weight=9]; 5031 -> 3418[label="",style="solid", color="burlywood", weight=3]; 3273[label="GT",fontsize=16,color="green",shape="box"];3274[label="yvy400000",fontsize=16,color="green",shape="box"];3275[label="yvy300000",fontsize=16,color="green",shape="box"];3276[label="GT",fontsize=16,color="green",shape="box"];3277[label="yvy306",fontsize=16,color="green",shape="box"];3278[label="not False",fontsize=16,color="black",shape="box"];3278 -> 3424[label="",style="solid", color="black", weight=3]; 3279[label="not True",fontsize=16,color="black",shape="box"];3279 -> 3425[label="",style="solid", color="black", weight=3]; 3280 -> 2348[label="",style="dashed", color="red", weight=0]; 3280[label="yvy891 < yvy901 || yvy891 == yvy901 && yvy892 <= yvy902",fontsize=16,color="magenta"];3280 -> 3426[label="",style="dashed", color="magenta", weight=3]; 3280 -> 3427[label="",style="dashed", color="magenta", weight=3]; 3281[label="yvy890 == yvy900",fontsize=16,color="blue",shape="box"];5032[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 5032[label="",style="solid", color="blue", weight=9]; 5032 -> 3428[label="",style="solid", color="blue", weight=3]; 5033[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 5033[label="",style="solid", color="blue", weight=9]; 5033 -> 3429[label="",style="solid", color="blue", weight=3]; 5034[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 5034[label="",style="solid", color="blue", weight=9]; 5034 -> 3430[label="",style="solid", color="blue", weight=3]; 5035[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 5035[label="",style="solid", color="blue", weight=9]; 5035 -> 3431[label="",style="solid", color="blue", weight=3]; 5036[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 5036[label="",style="solid", color="blue", weight=9]; 5036 -> 3432[label="",style="solid", color="blue", weight=3]; 5037[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 5037[label="",style="solid", color="blue", weight=9]; 5037 -> 3433[label="",style="solid", color="blue", weight=3]; 5038[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 5038[label="",style="solid", color="blue", weight=9]; 5038 -> 3434[label="",style="solid", color="blue", weight=3]; 5039[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 5039[label="",style="solid", color="blue", weight=9]; 5039 -> 3435[label="",style="solid", color="blue", weight=3]; 5040[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 5040[label="",style="solid", color="blue", weight=9]; 5040 -> 3436[label="",style="solid", color="blue", weight=3]; 5041[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 5041[label="",style="solid", color="blue", weight=9]; 5041 -> 3437[label="",style="solid", color="blue", weight=3]; 5042[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 5042[label="",style="solid", color="blue", weight=9]; 5042 -> 3438[label="",style="solid", color="blue", weight=3]; 5043[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 5043[label="",style="solid", color="blue", weight=9]; 5043 -> 3439[label="",style="solid", color="blue", weight=3]; 5044[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 5044[label="",style="solid", color="blue", weight=9]; 5044 -> 3440[label="",style="solid", color="blue", weight=3]; 5045[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 5045[label="",style="solid", color="blue", weight=9]; 5045 -> 3441[label="",style="solid", color="blue", weight=3]; 3282 -> 1873[label="",style="dashed", color="red", weight=0]; 3282[label="yvy890 < yvy900",fontsize=16,color="magenta"];3282 -> 3442[label="",style="dashed", color="magenta", weight=3]; 3282 -> 3443[label="",style="dashed", color="magenta", weight=3]; 3283 -> 1874[label="",style="dashed", color="red", weight=0]; 3283[label="yvy890 < yvy900",fontsize=16,color="magenta"];3283 -> 3444[label="",style="dashed", color="magenta", weight=3]; 3283 -> 3445[label="",style="dashed", color="magenta", weight=3]; 3284 -> 1875[label="",style="dashed", color="red", weight=0]; 3284[label="yvy890 < yvy900",fontsize=16,color="magenta"];3284 -> 3446[label="",style="dashed", color="magenta", weight=3]; 3284 -> 3447[label="",style="dashed", color="magenta", weight=3]; 3285 -> 1876[label="",style="dashed", color="red", weight=0]; 3285[label="yvy890 < yvy900",fontsize=16,color="magenta"];3285 -> 3448[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3449[label="",style="dashed", color="magenta", weight=3]; 3286 -> 1877[label="",style="dashed", color="red", weight=0]; 3286[label="yvy890 < yvy900",fontsize=16,color="magenta"];3286 -> 3450[label="",style="dashed", color="magenta", weight=3]; 3286 -> 3451[label="",style="dashed", color="magenta", weight=3]; 3287 -> 1878[label="",style="dashed", color="red", weight=0]; 3287[label="yvy890 < yvy900",fontsize=16,color="magenta"];3287 -> 3452[label="",style="dashed", color="magenta", weight=3]; 3287 -> 3453[label="",style="dashed", color="magenta", weight=3]; 3288 -> 1879[label="",style="dashed", color="red", weight=0]; 3288[label="yvy890 < yvy900",fontsize=16,color="magenta"];3288 -> 3454[label="",style="dashed", color="magenta", weight=3]; 3288 -> 3455[label="",style="dashed", color="magenta", weight=3]; 3289 -> 1880[label="",style="dashed", color="red", weight=0]; 3289[label="yvy890 < yvy900",fontsize=16,color="magenta"];3289 -> 3456[label="",style="dashed", color="magenta", weight=3]; 3289 -> 3457[label="",style="dashed", color="magenta", weight=3]; 3290 -> 1881[label="",style="dashed", color="red", weight=0]; 3290[label="yvy890 < yvy900",fontsize=16,color="magenta"];3290 -> 3458[label="",style="dashed", color="magenta", weight=3]; 3290 -> 3459[label="",style="dashed", color="magenta", weight=3]; 3291 -> 1882[label="",style="dashed", color="red", weight=0]; 3291[label="yvy890 < yvy900",fontsize=16,color="magenta"];3291 -> 3460[label="",style="dashed", color="magenta", weight=3]; 3291 -> 3461[label="",style="dashed", color="magenta", weight=3]; 3292 -> 1883[label="",style="dashed", color="red", weight=0]; 3292[label="yvy890 < yvy900",fontsize=16,color="magenta"];3292 -> 3462[label="",style="dashed", color="magenta", weight=3]; 3292 -> 3463[label="",style="dashed", color="magenta", weight=3]; 3293 -> 1884[label="",style="dashed", color="red", weight=0]; 3293[label="yvy890 < yvy900",fontsize=16,color="magenta"];3293 -> 3464[label="",style="dashed", color="magenta", weight=3]; 3293 -> 3465[label="",style="dashed", color="magenta", weight=3]; 3294 -> 1885[label="",style="dashed", color="red", weight=0]; 3294[label="yvy890 < yvy900",fontsize=16,color="magenta"];3294 -> 3466[label="",style="dashed", color="magenta", weight=3]; 3294 -> 3467[label="",style="dashed", color="magenta", weight=3]; 3295 -> 1886[label="",style="dashed", color="red", weight=0]; 3295[label="yvy890 < yvy900",fontsize=16,color="magenta"];3295 -> 3468[label="",style="dashed", color="magenta", weight=3]; 3295 -> 3469[label="",style="dashed", color="magenta", weight=3]; 3296[label="yvy890",fontsize=16,color="green",shape="box"];3297[label="yvy900",fontsize=16,color="green",shape="box"];3298[label="yvy890",fontsize=16,color="green",shape="box"];3299[label="yvy900",fontsize=16,color="green",shape="box"];3300[label="yvy890",fontsize=16,color="green",shape="box"];3301[label="yvy900",fontsize=16,color="green",shape="box"];3302[label="yvy890",fontsize=16,color="green",shape="box"];3303[label="yvy900",fontsize=16,color="green",shape="box"];3304[label="yvy890",fontsize=16,color="green",shape="box"];3305[label="yvy900",fontsize=16,color="green",shape="box"];3306[label="yvy890",fontsize=16,color="green",shape="box"];3307[label="yvy900",fontsize=16,color="green",shape="box"];3308[label="yvy890",fontsize=16,color="green",shape="box"];3309[label="yvy900",fontsize=16,color="green",shape="box"];3310[label="yvy890",fontsize=16,color="green",shape="box"];3311[label="yvy900",fontsize=16,color="green",shape="box"];3312[label="yvy890",fontsize=16,color="green",shape="box"];3313[label="yvy900",fontsize=16,color="green",shape="box"];3314[label="yvy890",fontsize=16,color="green",shape="box"];3315[label="yvy900",fontsize=16,color="green",shape="box"];3316[label="yvy890",fontsize=16,color="green",shape="box"];3317[label="yvy900",fontsize=16,color="green",shape="box"];3318[label="yvy890",fontsize=16,color="green",shape="box"];3319[label="yvy900",fontsize=16,color="green",shape="box"];3320[label="yvy890",fontsize=16,color="green",shape="box"];3321[label="yvy900",fontsize=16,color="green",shape="box"];3322[label="yvy890",fontsize=16,color="green",shape="box"];3323[label="yvy900",fontsize=16,color="green",shape="box"];3324[label="yvy890",fontsize=16,color="green",shape="box"];3325[label="yvy900",fontsize=16,color="green",shape="box"];3326[label="yvy890",fontsize=16,color="green",shape="box"];3327[label="yvy900",fontsize=16,color="green",shape="box"];3328[label="yvy890",fontsize=16,color="green",shape="box"];3329[label="yvy900",fontsize=16,color="green",shape="box"];3330[label="yvy890",fontsize=16,color="green",shape="box"];3331[label="yvy900",fontsize=16,color="green",shape="box"];3332[label="yvy890",fontsize=16,color="green",shape="box"];3333[label="yvy900",fontsize=16,color="green",shape="box"];3334[label="yvy890",fontsize=16,color="green",shape="box"];3335[label="yvy900",fontsize=16,color="green",shape="box"];3336[label="yvy890",fontsize=16,color="green",shape="box"];3337[label="yvy900",fontsize=16,color="green",shape="box"];3338[label="yvy890",fontsize=16,color="green",shape="box"];3339[label="yvy900",fontsize=16,color="green",shape="box"];3340[label="yvy890",fontsize=16,color="green",shape="box"];3341[label="yvy900",fontsize=16,color="green",shape="box"];3342[label="yvy890",fontsize=16,color="green",shape="box"];3343[label="yvy900",fontsize=16,color="green",shape="box"];3344[label="yvy890",fontsize=16,color="green",shape="box"];3345[label="yvy900",fontsize=16,color="green",shape="box"];3346[label="yvy890",fontsize=16,color="green",shape="box"];3347[label="yvy900",fontsize=16,color="green",shape="box"];3348[label="yvy890",fontsize=16,color="green",shape="box"];3349[label="yvy900",fontsize=16,color="green",shape="box"];3350[label="yvy890",fontsize=16,color="green",shape="box"];3351[label="yvy900",fontsize=16,color="green",shape="box"];3352[label="yvy890",fontsize=16,color="green",shape="box"];3353[label="yvy900",fontsize=16,color="green",shape="box"];3354[label="yvy890",fontsize=16,color="green",shape="box"];3355[label="yvy900",fontsize=16,color="green",shape="box"];3356[label="yvy890",fontsize=16,color="green",shape="box"];3357[label="yvy900",fontsize=16,color="green",shape="box"];3358[label="yvy890",fontsize=16,color="green",shape="box"];3359[label="yvy900",fontsize=16,color="green",shape="box"];3360[label="yvy890",fontsize=16,color="green",shape="box"];3361[label="yvy900",fontsize=16,color="green",shape="box"];3362[label="yvy890",fontsize=16,color="green",shape="box"];3363[label="yvy900",fontsize=16,color="green",shape="box"];3364[label="yvy890",fontsize=16,color="green",shape="box"];3365[label="yvy900",fontsize=16,color="green",shape="box"];3366[label="yvy890",fontsize=16,color="green",shape="box"];3367[label="yvy900",fontsize=16,color="green",shape="box"];3368[label="yvy890",fontsize=16,color="green",shape="box"];3369[label="yvy900",fontsize=16,color="green",shape="box"];3370[label="yvy890",fontsize=16,color="green",shape="box"];3371[label="yvy900",fontsize=16,color="green",shape="box"];3372[label="yvy890",fontsize=16,color="green",shape="box"];3373[label="yvy900",fontsize=16,color="green",shape="box"];3374[label="yvy890",fontsize=16,color="green",shape="box"];3375[label="yvy900",fontsize=16,color="green",shape="box"];3376[label="yvy890",fontsize=16,color="green",shape="box"];3377[label="yvy900",fontsize=16,color="green",shape="box"];3378[label="yvy890",fontsize=16,color="green",shape="box"];3379[label="yvy900",fontsize=16,color="green",shape="box"];3380[label="yvy891 <= yvy901",fontsize=16,color="blue",shape="box"];5046[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5046[label="",style="solid", color="blue", weight=9]; 5046 -> 3470[label="",style="solid", color="blue", weight=3]; 5047[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5047[label="",style="solid", color="blue", weight=9]; 5047 -> 3471[label="",style="solid", color="blue", weight=3]; 5048[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5048[label="",style="solid", color="blue", weight=9]; 5048 -> 3472[label="",style="solid", color="blue", weight=3]; 5049[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5049[label="",style="solid", color="blue", weight=9]; 5049 -> 3473[label="",style="solid", color="blue", weight=3]; 5050[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5050[label="",style="solid", color="blue", weight=9]; 5050 -> 3474[label="",style="solid", color="blue", weight=3]; 5051[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5051[label="",style="solid", color="blue", weight=9]; 5051 -> 3475[label="",style="solid", color="blue", weight=3]; 5052[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5052[label="",style="solid", color="blue", weight=9]; 5052 -> 3476[label="",style="solid", color="blue", weight=3]; 5053[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5053[label="",style="solid", color="blue", weight=9]; 5053 -> 3477[label="",style="solid", color="blue", weight=3]; 5054[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5054[label="",style="solid", color="blue", weight=9]; 5054 -> 3478[label="",style="solid", color="blue", weight=3]; 5055[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5055[label="",style="solid", color="blue", weight=9]; 5055 -> 3479[label="",style="solid", color="blue", weight=3]; 5056[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5056[label="",style="solid", color="blue", weight=9]; 5056 -> 3480[label="",style="solid", color="blue", weight=3]; 5057[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5057[label="",style="solid", color="blue", weight=9]; 5057 -> 3481[label="",style="solid", color="blue", weight=3]; 5058[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5058[label="",style="solid", color="blue", weight=9]; 5058 -> 3482[label="",style="solid", color="blue", weight=3]; 5059[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5059[label="",style="solid", color="blue", weight=9]; 5059 -> 3483[label="",style="solid", color="blue", weight=3]; 3381[label="yvy890 == yvy900",fontsize=16,color="blue",shape="box"];5060[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3381 -> 5060[label="",style="solid", color="blue", weight=9]; 5060 -> 3484[label="",style="solid", color="blue", weight=3]; 5061[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3381 -> 5061[label="",style="solid", color="blue", weight=9]; 5061 -> 3485[label="",style="solid", color="blue", weight=3]; 5062[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3381 -> 5062[label="",style="solid", color="blue", weight=9]; 5062 -> 3486[label="",style="solid", color="blue", weight=3]; 5063[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3381 -> 5063[label="",style="solid", color="blue", weight=9]; 5063 -> 3487[label="",style="solid", color="blue", weight=3]; 5064[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3381 -> 5064[label="",style="solid", color="blue", weight=9]; 5064 -> 3488[label="",style="solid", color="blue", weight=3]; 5065[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3381 -> 5065[label="",style="solid", color="blue", weight=9]; 5065 -> 3489[label="",style="solid", color="blue", weight=3]; 5066[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3381 -> 5066[label="",style="solid", color="blue", weight=9]; 5066 -> 3490[label="",style="solid", color="blue", weight=3]; 5067[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3381 -> 5067[label="",style="solid", color="blue", weight=9]; 5067 -> 3491[label="",style="solid", color="blue", weight=3]; 5068[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3381 -> 5068[label="",style="solid", color="blue", weight=9]; 5068 -> 3492[label="",style="solid", color="blue", weight=3]; 5069[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3381 -> 5069[label="",style="solid", color="blue", weight=9]; 5069 -> 3493[label="",style="solid", color="blue", weight=3]; 5070[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3381 -> 5070[label="",style="solid", color="blue", weight=9]; 5070 -> 3494[label="",style="solid", color="blue", weight=3]; 5071[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3381 -> 5071[label="",style="solid", color="blue", weight=9]; 5071 -> 3495[label="",style="solid", color="blue", weight=3]; 5072[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3381 -> 5072[label="",style="solid", color="blue", weight=9]; 5072 -> 3496[label="",style="solid", color="blue", weight=3]; 5073[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3381 -> 5073[label="",style="solid", color="blue", weight=9]; 5073 -> 3497[label="",style="solid", color="blue", weight=3]; 3382 -> 1873[label="",style="dashed", color="red", weight=0]; 3382[label="yvy890 < yvy900",fontsize=16,color="magenta"];3382 -> 3498[label="",style="dashed", color="magenta", weight=3]; 3382 -> 3499[label="",style="dashed", color="magenta", weight=3]; 3383 -> 1874[label="",style="dashed", color="red", weight=0]; 3383[label="yvy890 < yvy900",fontsize=16,color="magenta"];3383 -> 3500[label="",style="dashed", color="magenta", weight=3]; 3383 -> 3501[label="",style="dashed", color="magenta", weight=3]; 3384 -> 1875[label="",style="dashed", color="red", weight=0]; 3384[label="yvy890 < yvy900",fontsize=16,color="magenta"];3384 -> 3502[label="",style="dashed", color="magenta", weight=3]; 3384 -> 3503[label="",style="dashed", color="magenta", weight=3]; 3385 -> 1876[label="",style="dashed", color="red", weight=0]; 3385[label="yvy890 < yvy900",fontsize=16,color="magenta"];3385 -> 3504[label="",style="dashed", color="magenta", weight=3]; 3385 -> 3505[label="",style="dashed", color="magenta", weight=3]; 3386 -> 1877[label="",style="dashed", color="red", weight=0]; 3386[label="yvy890 < yvy900",fontsize=16,color="magenta"];3386 -> 3506[label="",style="dashed", color="magenta", weight=3]; 3386 -> 3507[label="",style="dashed", color="magenta", weight=3]; 3387 -> 1878[label="",style="dashed", color="red", weight=0]; 3387[label="yvy890 < yvy900",fontsize=16,color="magenta"];3387 -> 3508[label="",style="dashed", color="magenta", weight=3]; 3387 -> 3509[label="",style="dashed", color="magenta", weight=3]; 3388 -> 1879[label="",style="dashed", color="red", weight=0]; 3388[label="yvy890 < yvy900",fontsize=16,color="magenta"];3388 -> 3510[label="",style="dashed", color="magenta", weight=3]; 3388 -> 3511[label="",style="dashed", color="magenta", weight=3]; 3389 -> 1880[label="",style="dashed", color="red", weight=0]; 3389[label="yvy890 < yvy900",fontsize=16,color="magenta"];3389 -> 3512[label="",style="dashed", color="magenta", weight=3]; 3389 -> 3513[label="",style="dashed", color="magenta", weight=3]; 3390 -> 1881[label="",style="dashed", color="red", weight=0]; 3390[label="yvy890 < yvy900",fontsize=16,color="magenta"];3390 -> 3514[label="",style="dashed", color="magenta", weight=3]; 3390 -> 3515[label="",style="dashed", color="magenta", weight=3]; 3391 -> 1882[label="",style="dashed", color="red", weight=0]; 3391[label="yvy890 < yvy900",fontsize=16,color="magenta"];3391 -> 3516[label="",style="dashed", color="magenta", weight=3]; 3391 -> 3517[label="",style="dashed", color="magenta", weight=3]; 3392 -> 1883[label="",style="dashed", color="red", weight=0]; 3392[label="yvy890 < yvy900",fontsize=16,color="magenta"];3392 -> 3518[label="",style="dashed", color="magenta", weight=3]; 3392 -> 3519[label="",style="dashed", color="magenta", weight=3]; 3393 -> 1884[label="",style="dashed", color="red", weight=0]; 3393[label="yvy890 < yvy900",fontsize=16,color="magenta"];3393 -> 3520[label="",style="dashed", color="magenta", weight=3]; 3393 -> 3521[label="",style="dashed", color="magenta", weight=3]; 3394 -> 1885[label="",style="dashed", color="red", weight=0]; 3394[label="yvy890 < yvy900",fontsize=16,color="magenta"];3394 -> 3522[label="",style="dashed", color="magenta", weight=3]; 3394 -> 3523[label="",style="dashed", color="magenta", weight=3]; 3395 -> 1886[label="",style="dashed", color="red", weight=0]; 3395[label="yvy890 < yvy900",fontsize=16,color="magenta"];3395 -> 3524[label="",style="dashed", color="magenta", weight=3]; 3395 -> 3525[label="",style="dashed", color="magenta", weight=3]; 3396[label="GT",fontsize=16,color="green",shape="box"];3397[label="Zero",fontsize=16,color="green",shape="box"];3398[label="Zero",fontsize=16,color="green",shape="box"];3399 -> 3043[label="",style="dashed", color="red", weight=0]; 3399[label="primPlusNat Zero yvy5420",fontsize=16,color="magenta"];3399 -> 3526[label="",style="dashed", color="magenta", weight=3]; 3399 -> 3527[label="",style="dashed", color="magenta", weight=3]; 3400[label="primMinusNat Zero (Succ yvy54200)",fontsize=16,color="black",shape="box"];3400 -> 3528[label="",style="solid", color="black", weight=3]; 3401[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];3401 -> 3529[label="",style="solid", color="black", weight=3]; 3402 -> 3043[label="",style="dashed", color="red", weight=0]; 3402[label="primPlusNat yvy11820 Zero",fontsize=16,color="magenta"];3402 -> 3530[label="",style="dashed", color="magenta", weight=3]; 3402 -> 3531[label="",style="dashed", color="magenta", weight=3]; 3403[label="Pos (primPlusNat yvy11820 yvy5420)",fontsize=16,color="green",shape="box"];3403 -> 3532[label="",style="dashed", color="green", weight=3]; 3404[label="primMinusNat yvy11820 yvy5420",fontsize=16,color="burlywood",shape="triangle"];5074[label="yvy11820/Succ yvy118200",fontsize=10,color="white",style="solid",shape="box"];3404 -> 5074[label="",style="solid", color="burlywood", weight=9]; 5074 -> 3533[label="",style="solid", color="burlywood", weight=3]; 5075[label="yvy11820/Zero",fontsize=10,color="white",style="solid",shape="box"];3404 -> 5075[label="",style="solid", color="burlywood", weight=9]; 5075 -> 3534[label="",style="solid", color="burlywood", weight=3]; 3405[label="yvy11820",fontsize=16,color="green",shape="box"];3406 -> 3404[label="",style="dashed", color="red", weight=0]; 3406[label="primMinusNat yvy5420 yvy11820",fontsize=16,color="magenta"];3406 -> 3535[label="",style="dashed", color="magenta", weight=3]; 3406 -> 3536[label="",style="dashed", color="magenta", weight=3]; 3407[label="Neg (primPlusNat yvy11820 yvy5420)",fontsize=16,color="green",shape="box"];3407 -> 3537[label="",style="dashed", color="green", weight=3]; 4132 -> 3021[label="",style="dashed", color="red", weight=0]; 4132[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size yvy363 yvy361 yvy364)",fontsize=16,color="magenta"];4132 -> 4135[label="",style="dashed", color="magenta", weight=3]; 4132 -> 4136[label="",style="dashed", color="magenta", weight=3]; 4133[label="primPlusInt (Pos yvy3650) (FiniteMap.mkBranchRight_size yvy363 yvy361 yvy364)",fontsize=16,color="black",shape="box"];4133 -> 4137[label="",style="solid", color="black", weight=3]; 4134[label="primPlusInt (Neg yvy3650) (FiniteMap.mkBranchRight_size yvy363 yvy361 yvy364)",fontsize=16,color="black",shape="box"];4134 -> 4138[label="",style="solid", color="black", weight=3]; 3412 -> 3997[label="",style="dashed", color="red", weight=0]; 3412[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) yvy50 yvy51 yvy118 yvy54",fontsize=16,color="magenta"];3412 -> 4043[label="",style="dashed", color="magenta", weight=3]; 3412 -> 4044[label="",style="dashed", color="magenta", weight=3]; 3412 -> 4045[label="",style="dashed", color="magenta", weight=3]; 3412 -> 4046[label="",style="dashed", color="magenta", weight=3]; 3412 -> 4047[label="",style="dashed", color="magenta", weight=3]; 3413[label="error []",fontsize=16,color="red",shape="box"];3414[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"];3414 -> 3544[label="",style="solid", color="black", weight=3]; 3415 -> 3044[label="",style="dashed", color="red", weight=0]; 3415[label="FiniteMap.sizeFM yvy543",fontsize=16,color="magenta"];3415 -> 3545[label="",style="dashed", color="magenta", weight=3]; 3416 -> 665[label="",style="dashed", color="red", weight=0]; 3416[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3416 -> 3546[label="",style="dashed", color="magenta", weight=3]; 3416 -> 3547[label="",style="dashed", color="magenta", weight=3]; 3417[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"];3417 -> 3548[label="",style="solid", color="black", weight=3]; 3418[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"];3418 -> 3549[label="",style="solid", color="black", weight=3]; 3424[label="True",fontsize=16,color="green",shape="box"];3425[label="False",fontsize=16,color="green",shape="box"];3426 -> 1570[label="",style="dashed", color="red", weight=0]; 3426[label="yvy891 == yvy901 && yvy892 <= yvy902",fontsize=16,color="magenta"];3426 -> 3556[label="",style="dashed", color="magenta", weight=3]; 3426 -> 3557[label="",style="dashed", color="magenta", weight=3]; 3427[label="yvy891 < yvy901",fontsize=16,color="blue",shape="box"];5076[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5076[label="",style="solid", color="blue", weight=9]; 5076 -> 3558[label="",style="solid", color="blue", weight=3]; 5077[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5077[label="",style="solid", color="blue", weight=9]; 5077 -> 3559[label="",style="solid", color="blue", weight=3]; 5078[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5078[label="",style="solid", color="blue", weight=9]; 5078 -> 3560[label="",style="solid", color="blue", weight=3]; 5079[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5079[label="",style="solid", color="blue", weight=9]; 5079 -> 3561[label="",style="solid", color="blue", weight=3]; 5080[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5080[label="",style="solid", color="blue", weight=9]; 5080 -> 3562[label="",style="solid", color="blue", weight=3]; 5081[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5081[label="",style="solid", color="blue", weight=9]; 5081 -> 3563[label="",style="solid", color="blue", weight=3]; 5082[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5082[label="",style="solid", color="blue", weight=9]; 5082 -> 3564[label="",style="solid", color="blue", weight=3]; 5083[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5083[label="",style="solid", color="blue", weight=9]; 5083 -> 3565[label="",style="solid", color="blue", weight=3]; 5084[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5084[label="",style="solid", color="blue", weight=9]; 5084 -> 3566[label="",style="solid", color="blue", weight=3]; 5085[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5085[label="",style="solid", color="blue", weight=9]; 5085 -> 3567[label="",style="solid", color="blue", weight=3]; 5086[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5086[label="",style="solid", color="blue", weight=9]; 5086 -> 3568[label="",style="solid", color="blue", weight=3]; 5087[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5087[label="",style="solid", color="blue", weight=9]; 5087 -> 3569[label="",style="solid", color="blue", weight=3]; 5088[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5088[label="",style="solid", color="blue", weight=9]; 5088 -> 3570[label="",style="solid", color="blue", weight=3]; 5089[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5089[label="",style="solid", color="blue", weight=9]; 5089 -> 3571[label="",style="solid", color="blue", weight=3]; 3428 -> 904[label="",style="dashed", color="red", weight=0]; 3428[label="yvy890 == yvy900",fontsize=16,color="magenta"];3428 -> 3572[label="",style="dashed", color="magenta", weight=3]; 3428 -> 3573[label="",style="dashed", color="magenta", weight=3]; 3429 -> 894[label="",style="dashed", color="red", weight=0]; 3429[label="yvy890 == yvy900",fontsize=16,color="magenta"];3429 -> 3574[label="",style="dashed", color="magenta", weight=3]; 3429 -> 3575[label="",style="dashed", color="magenta", weight=3]; 3430 -> 901[label="",style="dashed", color="red", weight=0]; 3430[label="yvy890 == yvy900",fontsize=16,color="magenta"];3430 -> 3576[label="",style="dashed", color="magenta", weight=3]; 3430 -> 3577[label="",style="dashed", color="magenta", weight=3]; 3431 -> 905[label="",style="dashed", color="red", weight=0]; 3431[label="yvy890 == yvy900",fontsize=16,color="magenta"];3431 -> 3578[label="",style="dashed", color="magenta", weight=3]; 3431 -> 3579[label="",style="dashed", color="magenta", weight=3]; 3432 -> 903[label="",style="dashed", color="red", weight=0]; 3432[label="yvy890 == yvy900",fontsize=16,color="magenta"];3432 -> 3580[label="",style="dashed", color="magenta", weight=3]; 3432 -> 3581[label="",style="dashed", color="magenta", weight=3]; 3433 -> 900[label="",style="dashed", color="red", weight=0]; 3433[label="yvy890 == yvy900",fontsize=16,color="magenta"];3433 -> 3582[label="",style="dashed", color="magenta", weight=3]; 3433 -> 3583[label="",style="dashed", color="magenta", weight=3]; 3434 -> 892[label="",style="dashed", color="red", weight=0]; 3434[label="yvy890 == yvy900",fontsize=16,color="magenta"];3434 -> 3584[label="",style="dashed", color="magenta", weight=3]; 3434 -> 3585[label="",style="dashed", color="magenta", weight=3]; 3435 -> 893[label="",style="dashed", color="red", weight=0]; 3435[label="yvy890 == yvy900",fontsize=16,color="magenta"];3435 -> 3586[label="",style="dashed", color="magenta", weight=3]; 3435 -> 3587[label="",style="dashed", color="magenta", weight=3]; 3436 -> 899[label="",style="dashed", color="red", weight=0]; 3436[label="yvy890 == yvy900",fontsize=16,color="magenta"];3436 -> 3588[label="",style="dashed", color="magenta", weight=3]; 3436 -> 3589[label="",style="dashed", color="magenta", weight=3]; 3437 -> 902[label="",style="dashed", color="red", weight=0]; 3437[label="yvy890 == yvy900",fontsize=16,color="magenta"];3437 -> 3590[label="",style="dashed", color="magenta", weight=3]; 3437 -> 3591[label="",style="dashed", color="magenta", weight=3]; 3438 -> 897[label="",style="dashed", color="red", weight=0]; 3438[label="yvy890 == yvy900",fontsize=16,color="magenta"];3438 -> 3592[label="",style="dashed", color="magenta", weight=3]; 3438 -> 3593[label="",style="dashed", color="magenta", weight=3]; 3439 -> 896[label="",style="dashed", color="red", weight=0]; 3439[label="yvy890 == yvy900",fontsize=16,color="magenta"];3439 -> 3594[label="",style="dashed", color="magenta", weight=3]; 3439 -> 3595[label="",style="dashed", color="magenta", weight=3]; 3440 -> 898[label="",style="dashed", color="red", weight=0]; 3440[label="yvy890 == yvy900",fontsize=16,color="magenta"];3440 -> 3596[label="",style="dashed", color="magenta", weight=3]; 3440 -> 3597[label="",style="dashed", color="magenta", weight=3]; 3441 -> 895[label="",style="dashed", color="red", weight=0]; 3441[label="yvy890 == yvy900",fontsize=16,color="magenta"];3441 -> 3598[label="",style="dashed", color="magenta", weight=3]; 3441 -> 3599[label="",style="dashed", color="magenta", weight=3]; 3442[label="yvy890",fontsize=16,color="green",shape="box"];3443[label="yvy900",fontsize=16,color="green",shape="box"];3444[label="yvy890",fontsize=16,color="green",shape="box"];3445[label="yvy900",fontsize=16,color="green",shape="box"];3446[label="yvy890",fontsize=16,color="green",shape="box"];3447[label="yvy900",fontsize=16,color="green",shape="box"];3448[label="yvy890",fontsize=16,color="green",shape="box"];3449[label="yvy900",fontsize=16,color="green",shape="box"];3450[label="yvy890",fontsize=16,color="green",shape="box"];3451[label="yvy900",fontsize=16,color="green",shape="box"];3452[label="yvy890",fontsize=16,color="green",shape="box"];3453[label="yvy900",fontsize=16,color="green",shape="box"];3454[label="yvy890",fontsize=16,color="green",shape="box"];3455[label="yvy900",fontsize=16,color="green",shape="box"];3456[label="yvy890",fontsize=16,color="green",shape="box"];3457[label="yvy900",fontsize=16,color="green",shape="box"];3458[label="yvy890",fontsize=16,color="green",shape="box"];3459[label="yvy900",fontsize=16,color="green",shape="box"];3460[label="yvy890",fontsize=16,color="green",shape="box"];3461[label="yvy900",fontsize=16,color="green",shape="box"];3462[label="yvy890",fontsize=16,color="green",shape="box"];3463[label="yvy900",fontsize=16,color="green",shape="box"];3464[label="yvy890",fontsize=16,color="green",shape="box"];3465[label="yvy900",fontsize=16,color="green",shape="box"];3466[label="yvy890",fontsize=16,color="green",shape="box"];3467[label="yvy900",fontsize=16,color="green",shape="box"];3468[label="yvy890",fontsize=16,color="green",shape="box"];3469[label="yvy900",fontsize=16,color="green",shape="box"];3470 -> 1891[label="",style="dashed", color="red", weight=0]; 3470[label="yvy891 <= yvy901",fontsize=16,color="magenta"];3470 -> 3600[label="",style="dashed", color="magenta", weight=3]; 3470 -> 3601[label="",style="dashed", color="magenta", weight=3]; 3471 -> 1892[label="",style="dashed", color="red", weight=0]; 3471[label="yvy891 <= yvy901",fontsize=16,color="magenta"];3471 -> 3602[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3603[label="",style="dashed", color="magenta", weight=3]; 3472 -> 1893[label="",style="dashed", color="red", weight=0]; 3472[label="yvy891 <= yvy901",fontsize=16,color="magenta"];3472 -> 3604[label="",style="dashed", color="magenta", weight=3]; 3472 -> 3605[label="",style="dashed", color="magenta", weight=3]; 3473 -> 1894[label="",style="dashed", color="red", weight=0]; 3473[label="yvy891 <= yvy901",fontsize=16,color="magenta"];3473 -> 3606[label="",style="dashed", color="magenta", weight=3]; 3473 -> 3607[label="",style="dashed", color="magenta", weight=3]; 3474 -> 1895[label="",style="dashed", color="red", weight=0]; 3474[label="yvy891 <= yvy901",fontsize=16,color="magenta"];3474 -> 3608[label="",style="dashed", color="magenta", weight=3]; 3474 -> 3609[label="",style="dashed", color="magenta", weight=3]; 3475 -> 1896[label="",style="dashed", color="red", weight=0]; 3475[label="yvy891 <= yvy901",fontsize=16,color="magenta"];3475 -> 3610[label="",style="dashed", color="magenta", weight=3]; 3475 -> 3611[label="",style="dashed", color="magenta", weight=3]; 3476 -> 1897[label="",style="dashed", color="red", weight=0]; 3476[label="yvy891 <= yvy901",fontsize=16,color="magenta"];3476 -> 3612[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3613[label="",style="dashed", color="magenta", weight=3]; 3477 -> 1898[label="",style="dashed", color="red", weight=0]; 3477[label="yvy891 <= yvy901",fontsize=16,color="magenta"];3477 -> 3614[label="",style="dashed", color="magenta", weight=3]; 3477 -> 3615[label="",style="dashed", color="magenta", weight=3]; 3478 -> 1899[label="",style="dashed", color="red", weight=0]; 3478[label="yvy891 <= yvy901",fontsize=16,color="magenta"];3478 -> 3616[label="",style="dashed", color="magenta", weight=3]; 3478 -> 3617[label="",style="dashed", color="magenta", weight=3]; 3479 -> 1900[label="",style="dashed", color="red", weight=0]; 3479[label="yvy891 <= yvy901",fontsize=16,color="magenta"];3479 -> 3618[label="",style="dashed", color="magenta", weight=3]; 3479 -> 3619[label="",style="dashed", color="magenta", weight=3]; 3480 -> 1901[label="",style="dashed", color="red", weight=0]; 3480[label="yvy891 <= yvy901",fontsize=16,color="magenta"];3480 -> 3620[label="",style="dashed", color="magenta", weight=3]; 3480 -> 3621[label="",style="dashed", color="magenta", weight=3]; 3481 -> 1902[label="",style="dashed", color="red", weight=0]; 3481[label="yvy891 <= yvy901",fontsize=16,color="magenta"];3481 -> 3622[label="",style="dashed", color="magenta", weight=3]; 3481 -> 3623[label="",style="dashed", color="magenta", weight=3]; 3482 -> 1903[label="",style="dashed", color="red", weight=0]; 3482[label="yvy891 <= yvy901",fontsize=16,color="magenta"];3482 -> 3624[label="",style="dashed", color="magenta", weight=3]; 3482 -> 3625[label="",style="dashed", color="magenta", weight=3]; 3483 -> 1904[label="",style="dashed", color="red", weight=0]; 3483[label="yvy891 <= yvy901",fontsize=16,color="magenta"];3483 -> 3626[label="",style="dashed", color="magenta", weight=3]; 3483 -> 3627[label="",style="dashed", color="magenta", weight=3]; 3484 -> 904[label="",style="dashed", color="red", weight=0]; 3484[label="yvy890 == yvy900",fontsize=16,color="magenta"];3484 -> 3628[label="",style="dashed", color="magenta", weight=3]; 3484 -> 3629[label="",style="dashed", color="magenta", weight=3]; 3485 -> 894[label="",style="dashed", color="red", weight=0]; 3485[label="yvy890 == yvy900",fontsize=16,color="magenta"];3485 -> 3630[label="",style="dashed", color="magenta", weight=3]; 3485 -> 3631[label="",style="dashed", color="magenta", weight=3]; 3486 -> 901[label="",style="dashed", color="red", weight=0]; 3486[label="yvy890 == yvy900",fontsize=16,color="magenta"];3486 -> 3632[label="",style="dashed", color="magenta", weight=3]; 3486 -> 3633[label="",style="dashed", color="magenta", weight=3]; 3487 -> 905[label="",style="dashed", color="red", weight=0]; 3487[label="yvy890 == yvy900",fontsize=16,color="magenta"];3487 -> 3634[label="",style="dashed", color="magenta", weight=3]; 3487 -> 3635[label="",style="dashed", color="magenta", weight=3]; 3488 -> 903[label="",style="dashed", color="red", weight=0]; 3488[label="yvy890 == yvy900",fontsize=16,color="magenta"];3488 -> 3636[label="",style="dashed", color="magenta", weight=3]; 3488 -> 3637[label="",style="dashed", color="magenta", weight=3]; 3489 -> 900[label="",style="dashed", color="red", weight=0]; 3489[label="yvy890 == yvy900",fontsize=16,color="magenta"];3489 -> 3638[label="",style="dashed", color="magenta", weight=3]; 3489 -> 3639[label="",style="dashed", color="magenta", weight=3]; 3490 -> 892[label="",style="dashed", color="red", weight=0]; 3490[label="yvy890 == yvy900",fontsize=16,color="magenta"];3490 -> 3640[label="",style="dashed", color="magenta", weight=3]; 3490 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3491 -> 893[label="",style="dashed", color="red", weight=0]; 3491[label="yvy890 == yvy900",fontsize=16,color="magenta"];3491 -> 3642[label="",style="dashed", color="magenta", weight=3]; 3491 -> 3643[label="",style="dashed", color="magenta", weight=3]; 3492 -> 899[label="",style="dashed", color="red", weight=0]; 3492[label="yvy890 == yvy900",fontsize=16,color="magenta"];3492 -> 3644[label="",style="dashed", color="magenta", weight=3]; 3492 -> 3645[label="",style="dashed", color="magenta", weight=3]; 3493 -> 902[label="",style="dashed", color="red", weight=0]; 3493[label="yvy890 == yvy900",fontsize=16,color="magenta"];3493 -> 3646[label="",style="dashed", color="magenta", weight=3]; 3493 -> 3647[label="",style="dashed", color="magenta", weight=3]; 3494 -> 897[label="",style="dashed", color="red", weight=0]; 3494[label="yvy890 == yvy900",fontsize=16,color="magenta"];3494 -> 3648[label="",style="dashed", color="magenta", weight=3]; 3494 -> 3649[label="",style="dashed", color="magenta", weight=3]; 3495 -> 896[label="",style="dashed", color="red", weight=0]; 3495[label="yvy890 == yvy900",fontsize=16,color="magenta"];3495 -> 3650[label="",style="dashed", color="magenta", weight=3]; 3495 -> 3651[label="",style="dashed", color="magenta", weight=3]; 3496 -> 898[label="",style="dashed", color="red", weight=0]; 3496[label="yvy890 == yvy900",fontsize=16,color="magenta"];3496 -> 3652[label="",style="dashed", color="magenta", weight=3]; 3496 -> 3653[label="",style="dashed", color="magenta", weight=3]; 3497 -> 895[label="",style="dashed", color="red", weight=0]; 3497[label="yvy890 == yvy900",fontsize=16,color="magenta"];3497 -> 3654[label="",style="dashed", color="magenta", weight=3]; 3497 -> 3655[label="",style="dashed", color="magenta", weight=3]; 3498[label="yvy890",fontsize=16,color="green",shape="box"];3499[label="yvy900",fontsize=16,color="green",shape="box"];3500[label="yvy890",fontsize=16,color="green",shape="box"];3501[label="yvy900",fontsize=16,color="green",shape="box"];3502[label="yvy890",fontsize=16,color="green",shape="box"];3503[label="yvy900",fontsize=16,color="green",shape="box"];3504[label="yvy890",fontsize=16,color="green",shape="box"];3505[label="yvy900",fontsize=16,color="green",shape="box"];3506[label="yvy890",fontsize=16,color="green",shape="box"];3507[label="yvy900",fontsize=16,color="green",shape="box"];3508[label="yvy890",fontsize=16,color="green",shape="box"];3509[label="yvy900",fontsize=16,color="green",shape="box"];3510[label="yvy890",fontsize=16,color="green",shape="box"];3511[label="yvy900",fontsize=16,color="green",shape="box"];3512[label="yvy890",fontsize=16,color="green",shape="box"];3513[label="yvy900",fontsize=16,color="green",shape="box"];3514[label="yvy890",fontsize=16,color="green",shape="box"];3515[label="yvy900",fontsize=16,color="green",shape="box"];3516[label="yvy890",fontsize=16,color="green",shape="box"];3517[label="yvy900",fontsize=16,color="green",shape="box"];3518[label="yvy890",fontsize=16,color="green",shape="box"];3519[label="yvy900",fontsize=16,color="green",shape="box"];3520[label="yvy890",fontsize=16,color="green",shape="box"];3521[label="yvy900",fontsize=16,color="green",shape="box"];3522[label="yvy890",fontsize=16,color="green",shape="box"];3523[label="yvy900",fontsize=16,color="green",shape="box"];3524[label="yvy890",fontsize=16,color="green",shape="box"];3525[label="yvy900",fontsize=16,color="green",shape="box"];3526[label="Zero",fontsize=16,color="green",shape="box"];3527[label="yvy5420",fontsize=16,color="green",shape="box"];3528[label="Neg (Succ yvy54200)",fontsize=16,color="green",shape="box"];3529[label="Pos Zero",fontsize=16,color="green",shape="box"];3530[label="yvy11820",fontsize=16,color="green",shape="box"];3531[label="Zero",fontsize=16,color="green",shape="box"];3532 -> 3043[label="",style="dashed", color="red", weight=0]; 3532[label="primPlusNat yvy11820 yvy5420",fontsize=16,color="magenta"];3532 -> 3656[label="",style="dashed", color="magenta", weight=3]; 3532 -> 3657[label="",style="dashed", color="magenta", weight=3]; 3533[label="primMinusNat (Succ yvy118200) yvy5420",fontsize=16,color="burlywood",shape="box"];5090[label="yvy5420/Succ yvy54200",fontsize=10,color="white",style="solid",shape="box"];3533 -> 5090[label="",style="solid", color="burlywood", weight=9]; 5090 -> 3658[label="",style="solid", color="burlywood", weight=3]; 5091[label="yvy5420/Zero",fontsize=10,color="white",style="solid",shape="box"];3533 -> 5091[label="",style="solid", color="burlywood", weight=9]; 5091 -> 3659[label="",style="solid", color="burlywood", weight=3]; 3534[label="primMinusNat Zero yvy5420",fontsize=16,color="burlywood",shape="box"];5092[label="yvy5420/Succ yvy54200",fontsize=10,color="white",style="solid",shape="box"];3534 -> 5092[label="",style="solid", color="burlywood", weight=9]; 5092 -> 3660[label="",style="solid", color="burlywood", weight=3]; 5093[label="yvy5420/Zero",fontsize=10,color="white",style="solid",shape="box"];3534 -> 5093[label="",style="solid", color="burlywood", weight=9]; 5093 -> 3661[label="",style="solid", color="burlywood", weight=3]; 3535[label="yvy5420",fontsize=16,color="green",shape="box"];3536[label="yvy11820",fontsize=16,color="green",shape="box"];3537 -> 3043[label="",style="dashed", color="red", weight=0]; 3537[label="primPlusNat yvy11820 yvy5420",fontsize=16,color="magenta"];3537 -> 3662[label="",style="dashed", color="magenta", weight=3]; 3537 -> 3663[label="",style="dashed", color="magenta", weight=3]; 4135[label="Succ Zero",fontsize=16,color="green",shape="box"];4136[label="FiniteMap.mkBranchLeft_size yvy363 yvy361 yvy364",fontsize=16,color="black",shape="box"];4136 -> 4139[label="",style="solid", color="black", weight=3]; 4137 -> 3021[label="",style="dashed", color="red", weight=0]; 4137[label="primPlusInt (Pos yvy3650) (FiniteMap.sizeFM yvy364)",fontsize=16,color="magenta"];4137 -> 4140[label="",style="dashed", color="magenta", weight=3]; 4137 -> 4141[label="",style="dashed", color="magenta", weight=3]; 4138 -> 3023[label="",style="dashed", color="red", weight=0]; 4138[label="primPlusInt (Neg yvy3650) (FiniteMap.sizeFM yvy364)",fontsize=16,color="magenta"];4138 -> 4142[label="",style="dashed", color="magenta", weight=3]; 4138 -> 4143[label="",style="dashed", color="magenta", weight=3]; 4043[label="yvy50",fontsize=16,color="green",shape="box"];4044[label="yvy118",fontsize=16,color="green",shape="box"];4045[label="yvy51",fontsize=16,color="green",shape="box"];4046[label="Succ Zero",fontsize=16,color="green",shape="box"];4047[label="yvy54",fontsize=16,color="green",shape="box"];3544 -> 3665[label="",style="dashed", color="red", weight=0]; 3544[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"];3544 -> 3666[label="",style="dashed", color="magenta", weight=3]; 3545[label="yvy543",fontsize=16,color="green",shape="box"];3546 -> 3044[label="",style="dashed", color="red", weight=0]; 3546[label="FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3546 -> 3667[label="",style="dashed", color="magenta", weight=3]; 3547[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3548[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"];3548 -> 3668[label="",style="solid", color="black", weight=3]; 3549[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"];3549 -> 3669[label="",style="solid", color="black", weight=3]; 3556[label="yvy892 <= yvy902",fontsize=16,color="blue",shape="box"];5094[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5094[label="",style="solid", color="blue", weight=9]; 5094 -> 3694[label="",style="solid", color="blue", weight=3]; 5095[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5095[label="",style="solid", color="blue", weight=9]; 5095 -> 3695[label="",style="solid", color="blue", weight=3]; 5096[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5096[label="",style="solid", color="blue", weight=9]; 5096 -> 3696[label="",style="solid", color="blue", weight=3]; 5097[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5097[label="",style="solid", color="blue", weight=9]; 5097 -> 3697[label="",style="solid", color="blue", weight=3]; 5098[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5098[label="",style="solid", color="blue", weight=9]; 5098 -> 3698[label="",style="solid", color="blue", weight=3]; 5099[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5099[label="",style="solid", color="blue", weight=9]; 5099 -> 3699[label="",style="solid", color="blue", weight=3]; 5100[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5100[label="",style="solid", color="blue", weight=9]; 5100 -> 3700[label="",style="solid", color="blue", weight=3]; 5101[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5101[label="",style="solid", color="blue", weight=9]; 5101 -> 3701[label="",style="solid", color="blue", weight=3]; 5102[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5102[label="",style="solid", color="blue", weight=9]; 5102 -> 3702[label="",style="solid", color="blue", weight=3]; 5103[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5103[label="",style="solid", color="blue", weight=9]; 5103 -> 3703[label="",style="solid", color="blue", weight=3]; 5104[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5104[label="",style="solid", color="blue", weight=9]; 5104 -> 3704[label="",style="solid", color="blue", weight=3]; 5105[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5105[label="",style="solid", color="blue", weight=9]; 5105 -> 3705[label="",style="solid", color="blue", weight=3]; 5106[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5106[label="",style="solid", color="blue", weight=9]; 5106 -> 3706[label="",style="solid", color="blue", weight=3]; 5107[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5107[label="",style="solid", color="blue", weight=9]; 5107 -> 3707[label="",style="solid", color="blue", weight=3]; 3557[label="yvy891 == yvy901",fontsize=16,color="blue",shape="box"];5108[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5108[label="",style="solid", color="blue", weight=9]; 5108 -> 3708[label="",style="solid", color="blue", weight=3]; 5109[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5109[label="",style="solid", color="blue", weight=9]; 5109 -> 3709[label="",style="solid", color="blue", weight=3]; 5110[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5110[label="",style="solid", color="blue", weight=9]; 5110 -> 3710[label="",style="solid", color="blue", weight=3]; 5111[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5111[label="",style="solid", color="blue", weight=9]; 5111 -> 3711[label="",style="solid", color="blue", weight=3]; 5112[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5112[label="",style="solid", color="blue", weight=9]; 5112 -> 3712[label="",style="solid", color="blue", weight=3]; 5113[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5113[label="",style="solid", color="blue", weight=9]; 5113 -> 3713[label="",style="solid", color="blue", weight=3]; 5114[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5114[label="",style="solid", color="blue", weight=9]; 5114 -> 3714[label="",style="solid", color="blue", weight=3]; 5115[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5115[label="",style="solid", color="blue", weight=9]; 5115 -> 3715[label="",style="solid", color="blue", weight=3]; 5116[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5116[label="",style="solid", color="blue", weight=9]; 5116 -> 3716[label="",style="solid", color="blue", weight=3]; 5117[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5117[label="",style="solid", color="blue", weight=9]; 5117 -> 3717[label="",style="solid", color="blue", weight=3]; 5118[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5118[label="",style="solid", color="blue", weight=9]; 5118 -> 3718[label="",style="solid", color="blue", weight=3]; 5119[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5119[label="",style="solid", color="blue", weight=9]; 5119 -> 3719[label="",style="solid", color="blue", weight=3]; 5120[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5120[label="",style="solid", color="blue", weight=9]; 5120 -> 3720[label="",style="solid", color="blue", weight=3]; 5121[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5121[label="",style="solid", color="blue", weight=9]; 5121 -> 3721[label="",style="solid", color="blue", weight=3]; 3558 -> 1873[label="",style="dashed", color="red", weight=0]; 3558[label="yvy891 < yvy901",fontsize=16,color="magenta"];3558 -> 3722[label="",style="dashed", color="magenta", weight=3]; 3558 -> 3723[label="",style="dashed", color="magenta", weight=3]; 3559 -> 1874[label="",style="dashed", color="red", weight=0]; 3559[label="yvy891 < yvy901",fontsize=16,color="magenta"];3559 -> 3724[label="",style="dashed", color="magenta", weight=3]; 3559 -> 3725[label="",style="dashed", color="magenta", weight=3]; 3560 -> 1875[label="",style="dashed", color="red", weight=0]; 3560[label="yvy891 < yvy901",fontsize=16,color="magenta"];3560 -> 3726[label="",style="dashed", color="magenta", weight=3]; 3560 -> 3727[label="",style="dashed", color="magenta", weight=3]; 3561 -> 1876[label="",style="dashed", color="red", weight=0]; 3561[label="yvy891 < yvy901",fontsize=16,color="magenta"];3561 -> 3728[label="",style="dashed", color="magenta", weight=3]; 3561 -> 3729[label="",style="dashed", color="magenta", weight=3]; 3562 -> 1877[label="",style="dashed", color="red", weight=0]; 3562[label="yvy891 < yvy901",fontsize=16,color="magenta"];3562 -> 3730[label="",style="dashed", color="magenta", weight=3]; 3562 -> 3731[label="",style="dashed", color="magenta", weight=3]; 3563 -> 1878[label="",style="dashed", color="red", weight=0]; 3563[label="yvy891 < yvy901",fontsize=16,color="magenta"];3563 -> 3732[label="",style="dashed", color="magenta", weight=3]; 3563 -> 3733[label="",style="dashed", color="magenta", weight=3]; 3564 -> 1879[label="",style="dashed", color="red", weight=0]; 3564[label="yvy891 < yvy901",fontsize=16,color="magenta"];3564 -> 3734[label="",style="dashed", color="magenta", weight=3]; 3564 -> 3735[label="",style="dashed", color="magenta", weight=3]; 3565 -> 1880[label="",style="dashed", color="red", weight=0]; 3565[label="yvy891 < yvy901",fontsize=16,color="magenta"];3565 -> 3736[label="",style="dashed", color="magenta", weight=3]; 3565 -> 3737[label="",style="dashed", color="magenta", weight=3]; 3566 -> 1881[label="",style="dashed", color="red", weight=0]; 3566[label="yvy891 < yvy901",fontsize=16,color="magenta"];3566 -> 3738[label="",style="dashed", color="magenta", weight=3]; 3566 -> 3739[label="",style="dashed", color="magenta", weight=3]; 3567 -> 1882[label="",style="dashed", color="red", weight=0]; 3567[label="yvy891 < yvy901",fontsize=16,color="magenta"];3567 -> 3740[label="",style="dashed", color="magenta", weight=3]; 3567 -> 3741[label="",style="dashed", color="magenta", weight=3]; 3568 -> 1883[label="",style="dashed", color="red", weight=0]; 3568[label="yvy891 < yvy901",fontsize=16,color="magenta"];3568 -> 3742[label="",style="dashed", color="magenta", weight=3]; 3568 -> 3743[label="",style="dashed", color="magenta", weight=3]; 3569 -> 1884[label="",style="dashed", color="red", weight=0]; 3569[label="yvy891 < yvy901",fontsize=16,color="magenta"];3569 -> 3744[label="",style="dashed", color="magenta", weight=3]; 3569 -> 3745[label="",style="dashed", color="magenta", weight=3]; 3570 -> 1885[label="",style="dashed", color="red", weight=0]; 3570[label="yvy891 < yvy901",fontsize=16,color="magenta"];3570 -> 3746[label="",style="dashed", color="magenta", weight=3]; 3570 -> 3747[label="",style="dashed", color="magenta", weight=3]; 3571 -> 1886[label="",style="dashed", color="red", weight=0]; 3571[label="yvy891 < yvy901",fontsize=16,color="magenta"];3571 -> 3748[label="",style="dashed", color="magenta", weight=3]; 3571 -> 3749[label="",style="dashed", color="magenta", weight=3]; 3572[label="yvy900",fontsize=16,color="green",shape="box"];3573[label="yvy890",fontsize=16,color="green",shape="box"];3574[label="yvy900",fontsize=16,color="green",shape="box"];3575[label="yvy890",fontsize=16,color="green",shape="box"];3576[label="yvy900",fontsize=16,color="green",shape="box"];3577[label="yvy890",fontsize=16,color="green",shape="box"];3578[label="yvy900",fontsize=16,color="green",shape="box"];3579[label="yvy890",fontsize=16,color="green",shape="box"];3580[label="yvy900",fontsize=16,color="green",shape="box"];3581[label="yvy890",fontsize=16,color="green",shape="box"];3582[label="yvy900",fontsize=16,color="green",shape="box"];3583[label="yvy890",fontsize=16,color="green",shape="box"];3584[label="yvy900",fontsize=16,color="green",shape="box"];3585[label="yvy890",fontsize=16,color="green",shape="box"];3586[label="yvy900",fontsize=16,color="green",shape="box"];3587[label="yvy890",fontsize=16,color="green",shape="box"];3588[label="yvy900",fontsize=16,color="green",shape="box"];3589[label="yvy890",fontsize=16,color="green",shape="box"];3590[label="yvy900",fontsize=16,color="green",shape="box"];3591[label="yvy890",fontsize=16,color="green",shape="box"];3592[label="yvy900",fontsize=16,color="green",shape="box"];3593[label="yvy890",fontsize=16,color="green",shape="box"];3594[label="yvy900",fontsize=16,color="green",shape="box"];3595[label="yvy890",fontsize=16,color="green",shape="box"];3596[label="yvy900",fontsize=16,color="green",shape="box"];3597[label="yvy890",fontsize=16,color="green",shape="box"];3598[label="yvy900",fontsize=16,color="green",shape="box"];3599[label="yvy890",fontsize=16,color="green",shape="box"];3600[label="yvy891",fontsize=16,color="green",shape="box"];3601[label="yvy901",fontsize=16,color="green",shape="box"];3602[label="yvy891",fontsize=16,color="green",shape="box"];3603[label="yvy901",fontsize=16,color="green",shape="box"];3604[label="yvy891",fontsize=16,color="green",shape="box"];3605[label="yvy901",fontsize=16,color="green",shape="box"];3606[label="yvy891",fontsize=16,color="green",shape="box"];3607[label="yvy901",fontsize=16,color="green",shape="box"];3608[label="yvy891",fontsize=16,color="green",shape="box"];3609[label="yvy901",fontsize=16,color="green",shape="box"];3610[label="yvy891",fontsize=16,color="green",shape="box"];3611[label="yvy901",fontsize=16,color="green",shape="box"];3612[label="yvy891",fontsize=16,color="green",shape="box"];3613[label="yvy901",fontsize=16,color="green",shape="box"];3614[label="yvy891",fontsize=16,color="green",shape="box"];3615[label="yvy901",fontsize=16,color="green",shape="box"];3616[label="yvy891",fontsize=16,color="green",shape="box"];3617[label="yvy901",fontsize=16,color="green",shape="box"];3618[label="yvy891",fontsize=16,color="green",shape="box"];3619[label="yvy901",fontsize=16,color="green",shape="box"];3620[label="yvy891",fontsize=16,color="green",shape="box"];3621[label="yvy901",fontsize=16,color="green",shape="box"];3622[label="yvy891",fontsize=16,color="green",shape="box"];3623[label="yvy901",fontsize=16,color="green",shape="box"];3624[label="yvy891",fontsize=16,color="green",shape="box"];3625[label="yvy901",fontsize=16,color="green",shape="box"];3626[label="yvy891",fontsize=16,color="green",shape="box"];3627[label="yvy901",fontsize=16,color="green",shape="box"];3628[label="yvy900",fontsize=16,color="green",shape="box"];3629[label="yvy890",fontsize=16,color="green",shape="box"];3630[label="yvy900",fontsize=16,color="green",shape="box"];3631[label="yvy890",fontsize=16,color="green",shape="box"];3632[label="yvy900",fontsize=16,color="green",shape="box"];3633[label="yvy890",fontsize=16,color="green",shape="box"];3634[label="yvy900",fontsize=16,color="green",shape="box"];3635[label="yvy890",fontsize=16,color="green",shape="box"];3636[label="yvy900",fontsize=16,color="green",shape="box"];3637[label="yvy890",fontsize=16,color="green",shape="box"];3638[label="yvy900",fontsize=16,color="green",shape="box"];3639[label="yvy890",fontsize=16,color="green",shape="box"];3640[label="yvy900",fontsize=16,color="green",shape="box"];3641[label="yvy890",fontsize=16,color="green",shape="box"];3642[label="yvy900",fontsize=16,color="green",shape="box"];3643[label="yvy890",fontsize=16,color="green",shape="box"];3644[label="yvy900",fontsize=16,color="green",shape="box"];3645[label="yvy890",fontsize=16,color="green",shape="box"];3646[label="yvy900",fontsize=16,color="green",shape="box"];3647[label="yvy890",fontsize=16,color="green",shape="box"];3648[label="yvy900",fontsize=16,color="green",shape="box"];3649[label="yvy890",fontsize=16,color="green",shape="box"];3650[label="yvy900",fontsize=16,color="green",shape="box"];3651[label="yvy890",fontsize=16,color="green",shape="box"];3652[label="yvy900",fontsize=16,color="green",shape="box"];3653[label="yvy890",fontsize=16,color="green",shape="box"];3654[label="yvy900",fontsize=16,color="green",shape="box"];3655[label="yvy890",fontsize=16,color="green",shape="box"];3656[label="yvy11820",fontsize=16,color="green",shape="box"];3657[label="yvy5420",fontsize=16,color="green",shape="box"];3658[label="primMinusNat (Succ yvy118200) (Succ yvy54200)",fontsize=16,color="black",shape="box"];3658 -> 3750[label="",style="solid", color="black", weight=3]; 3659[label="primMinusNat (Succ yvy118200) Zero",fontsize=16,color="black",shape="box"];3659 -> 3751[label="",style="solid", color="black", weight=3]; 3660[label="primMinusNat Zero (Succ yvy54200)",fontsize=16,color="black",shape="box"];3660 -> 3752[label="",style="solid", color="black", weight=3]; 3661[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];3661 -> 3753[label="",style="solid", color="black", weight=3]; 3662[label="yvy11820",fontsize=16,color="green",shape="box"];3663[label="yvy5420",fontsize=16,color="green",shape="box"];4139[label="FiniteMap.sizeFM yvy363",fontsize=16,color="burlywood",shape="triangle"];5122[label="yvy363/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4139 -> 5122[label="",style="solid", color="burlywood", weight=9]; 5122 -> 4144[label="",style="solid", color="burlywood", weight=3]; 5123[label="yvy363/FiniteMap.Branch yvy3630 yvy3631 yvy3632 yvy3633 yvy3634",fontsize=10,color="white",style="solid",shape="box"];4139 -> 5123[label="",style="solid", color="burlywood", weight=9]; 5123 -> 4145[label="",style="solid", color="burlywood", weight=3]; 4140[label="yvy3650",fontsize=16,color="green",shape="box"];4141 -> 4139[label="",style="dashed", color="red", weight=0]; 4141[label="FiniteMap.sizeFM yvy364",fontsize=16,color="magenta"];4141 -> 4146[label="",style="dashed", color="magenta", weight=3]; 4142[label="yvy3650",fontsize=16,color="green",shape="box"];4143 -> 4139[label="",style="dashed", color="red", weight=0]; 4143[label="FiniteMap.sizeFM yvy364",fontsize=16,color="magenta"];4143 -> 4147[label="",style="dashed", color="magenta", weight=3]; 3666 -> 1875[label="",style="dashed", color="red", weight=0]; 3666[label="FiniteMap.sizeFM yvy1184 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy1183",fontsize=16,color="magenta"];3666 -> 3754[label="",style="dashed", color="magenta", weight=3]; 3666 -> 3755[label="",style="dashed", color="magenta", weight=3]; 3665[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 yvy320",fontsize=16,color="burlywood",shape="triangle"];5124[label="yvy320/False",fontsize=10,color="white",style="solid",shape="box"];3665 -> 5124[label="",style="solid", color="burlywood", weight=9]; 5124 -> 3756[label="",style="solid", color="burlywood", weight=3]; 5125[label="yvy320/True",fontsize=10,color="white",style="solid",shape="box"];3665 -> 5125[label="",style="solid", color="burlywood", weight=9]; 5125 -> 3757[label="",style="solid", color="burlywood", weight=3]; 3667[label="yvy544",fontsize=16,color="green",shape="box"];3668[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"];3668 -> 3758[label="",style="solid", color="black", weight=3]; 3669 -> 3997[label="",style="dashed", color="red", weight=0]; 3669[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"];3669 -> 4048[label="",style="dashed", color="magenta", weight=3]; 3669 -> 4049[label="",style="dashed", color="magenta", weight=3]; 3669 -> 4050[label="",style="dashed", color="magenta", weight=3]; 3669 -> 4051[label="",style="dashed", color="magenta", weight=3]; 3669 -> 4052[label="",style="dashed", color="magenta", weight=3]; 3694 -> 1891[label="",style="dashed", color="red", weight=0]; 3694[label="yvy892 <= yvy902",fontsize=16,color="magenta"];3694 -> 3776[label="",style="dashed", color="magenta", weight=3]; 3694 -> 3777[label="",style="dashed", color="magenta", weight=3]; 3695 -> 1892[label="",style="dashed", color="red", weight=0]; 3695[label="yvy892 <= yvy902",fontsize=16,color="magenta"];3695 -> 3778[label="",style="dashed", color="magenta", weight=3]; 3695 -> 3779[label="",style="dashed", color="magenta", weight=3]; 3696 -> 1893[label="",style="dashed", color="red", weight=0]; 3696[label="yvy892 <= yvy902",fontsize=16,color="magenta"];3696 -> 3780[label="",style="dashed", color="magenta", weight=3]; 3696 -> 3781[label="",style="dashed", color="magenta", weight=3]; 3697 -> 1894[label="",style="dashed", color="red", weight=0]; 3697[label="yvy892 <= yvy902",fontsize=16,color="magenta"];3697 -> 3782[label="",style="dashed", color="magenta", weight=3]; 3697 -> 3783[label="",style="dashed", color="magenta", weight=3]; 3698 -> 1895[label="",style="dashed", color="red", weight=0]; 3698[label="yvy892 <= yvy902",fontsize=16,color="magenta"];3698 -> 3784[label="",style="dashed", color="magenta", weight=3]; 3698 -> 3785[label="",style="dashed", color="magenta", weight=3]; 3699 -> 1896[label="",style="dashed", color="red", weight=0]; 3699[label="yvy892 <= yvy902",fontsize=16,color="magenta"];3699 -> 3786[label="",style="dashed", color="magenta", weight=3]; 3699 -> 3787[label="",style="dashed", color="magenta", weight=3]; 3700 -> 1897[label="",style="dashed", color="red", weight=0]; 3700[label="yvy892 <= yvy902",fontsize=16,color="magenta"];3700 -> 3788[label="",style="dashed", color="magenta", weight=3]; 3700 -> 3789[label="",style="dashed", color="magenta", weight=3]; 3701 -> 1898[label="",style="dashed", color="red", weight=0]; 3701[label="yvy892 <= yvy902",fontsize=16,color="magenta"];3701 -> 3790[label="",style="dashed", color="magenta", weight=3]; 3701 -> 3791[label="",style="dashed", color="magenta", weight=3]; 3702 -> 1899[label="",style="dashed", color="red", weight=0]; 3702[label="yvy892 <= yvy902",fontsize=16,color="magenta"];3702 -> 3792[label="",style="dashed", color="magenta", weight=3]; 3702 -> 3793[label="",style="dashed", color="magenta", weight=3]; 3703 -> 1900[label="",style="dashed", color="red", weight=0]; 3703[label="yvy892 <= yvy902",fontsize=16,color="magenta"];3703 -> 3794[label="",style="dashed", color="magenta", weight=3]; 3703 -> 3795[label="",style="dashed", color="magenta", weight=3]; 3704 -> 1901[label="",style="dashed", color="red", weight=0]; 3704[label="yvy892 <= yvy902",fontsize=16,color="magenta"];3704 -> 3796[label="",style="dashed", color="magenta", weight=3]; 3704 -> 3797[label="",style="dashed", color="magenta", weight=3]; 3705 -> 1902[label="",style="dashed", color="red", weight=0]; 3705[label="yvy892 <= yvy902",fontsize=16,color="magenta"];3705 -> 3798[label="",style="dashed", color="magenta", weight=3]; 3705 -> 3799[label="",style="dashed", color="magenta", weight=3]; 3706 -> 1903[label="",style="dashed", color="red", weight=0]; 3706[label="yvy892 <= yvy902",fontsize=16,color="magenta"];3706 -> 3800[label="",style="dashed", color="magenta", weight=3]; 3706 -> 3801[label="",style="dashed", color="magenta", weight=3]; 3707 -> 1904[label="",style="dashed", color="red", weight=0]; 3707[label="yvy892 <= yvy902",fontsize=16,color="magenta"];3707 -> 3802[label="",style="dashed", color="magenta", weight=3]; 3707 -> 3803[label="",style="dashed", color="magenta", weight=3]; 3708 -> 904[label="",style="dashed", color="red", weight=0]; 3708[label="yvy891 == yvy901",fontsize=16,color="magenta"];3708 -> 3804[label="",style="dashed", color="magenta", weight=3]; 3708 -> 3805[label="",style="dashed", color="magenta", weight=3]; 3709 -> 894[label="",style="dashed", color="red", weight=0]; 3709[label="yvy891 == yvy901",fontsize=16,color="magenta"];3709 -> 3806[label="",style="dashed", color="magenta", weight=3]; 3709 -> 3807[label="",style="dashed", color="magenta", weight=3]; 3710 -> 901[label="",style="dashed", color="red", weight=0]; 3710[label="yvy891 == yvy901",fontsize=16,color="magenta"];3710 -> 3808[label="",style="dashed", color="magenta", weight=3]; 3710 -> 3809[label="",style="dashed", color="magenta", weight=3]; 3711 -> 905[label="",style="dashed", color="red", weight=0]; 3711[label="yvy891 == yvy901",fontsize=16,color="magenta"];3711 -> 3810[label="",style="dashed", color="magenta", weight=3]; 3711 -> 3811[label="",style="dashed", color="magenta", weight=3]; 3712 -> 903[label="",style="dashed", color="red", weight=0]; 3712[label="yvy891 == yvy901",fontsize=16,color="magenta"];3712 -> 3812[label="",style="dashed", color="magenta", weight=3]; 3712 -> 3813[label="",style="dashed", color="magenta", weight=3]; 3713 -> 900[label="",style="dashed", color="red", weight=0]; 3713[label="yvy891 == yvy901",fontsize=16,color="magenta"];3713 -> 3814[label="",style="dashed", color="magenta", weight=3]; 3713 -> 3815[label="",style="dashed", color="magenta", weight=3]; 3714 -> 892[label="",style="dashed", color="red", weight=0]; 3714[label="yvy891 == yvy901",fontsize=16,color="magenta"];3714 -> 3816[label="",style="dashed", color="magenta", weight=3]; 3714 -> 3817[label="",style="dashed", color="magenta", weight=3]; 3715 -> 893[label="",style="dashed", color="red", weight=0]; 3715[label="yvy891 == yvy901",fontsize=16,color="magenta"];3715 -> 3818[label="",style="dashed", color="magenta", weight=3]; 3715 -> 3819[label="",style="dashed", color="magenta", weight=3]; 3716 -> 899[label="",style="dashed", color="red", weight=0]; 3716[label="yvy891 == yvy901",fontsize=16,color="magenta"];3716 -> 3820[label="",style="dashed", color="magenta", weight=3]; 3716 -> 3821[label="",style="dashed", color="magenta", weight=3]; 3717 -> 902[label="",style="dashed", color="red", weight=0]; 3717[label="yvy891 == yvy901",fontsize=16,color="magenta"];3717 -> 3822[label="",style="dashed", color="magenta", weight=3]; 3717 -> 3823[label="",style="dashed", color="magenta", weight=3]; 3718 -> 897[label="",style="dashed", color="red", weight=0]; 3718[label="yvy891 == yvy901",fontsize=16,color="magenta"];3718 -> 3824[label="",style="dashed", color="magenta", weight=3]; 3718 -> 3825[label="",style="dashed", color="magenta", weight=3]; 3719 -> 896[label="",style="dashed", color="red", weight=0]; 3719[label="yvy891 == yvy901",fontsize=16,color="magenta"];3719 -> 3826[label="",style="dashed", color="magenta", weight=3]; 3719 -> 3827[label="",style="dashed", color="magenta", weight=3]; 3720 -> 898[label="",style="dashed", color="red", weight=0]; 3720[label="yvy891 == yvy901",fontsize=16,color="magenta"];3720 -> 3828[label="",style="dashed", color="magenta", weight=3]; 3720 -> 3829[label="",style="dashed", color="magenta", weight=3]; 3721 -> 895[label="",style="dashed", color="red", weight=0]; 3721[label="yvy891 == yvy901",fontsize=16,color="magenta"];3721 -> 3830[label="",style="dashed", color="magenta", weight=3]; 3721 -> 3831[label="",style="dashed", color="magenta", weight=3]; 3722[label="yvy891",fontsize=16,color="green",shape="box"];3723[label="yvy901",fontsize=16,color="green",shape="box"];3724[label="yvy891",fontsize=16,color="green",shape="box"];3725[label="yvy901",fontsize=16,color="green",shape="box"];3726[label="yvy891",fontsize=16,color="green",shape="box"];3727[label="yvy901",fontsize=16,color="green",shape="box"];3728[label="yvy891",fontsize=16,color="green",shape="box"];3729[label="yvy901",fontsize=16,color="green",shape="box"];3730[label="yvy891",fontsize=16,color="green",shape="box"];3731[label="yvy901",fontsize=16,color="green",shape="box"];3732[label="yvy891",fontsize=16,color="green",shape="box"];3733[label="yvy901",fontsize=16,color="green",shape="box"];3734[label="yvy891",fontsize=16,color="green",shape="box"];3735[label="yvy901",fontsize=16,color="green",shape="box"];3736[label="yvy891",fontsize=16,color="green",shape="box"];3737[label="yvy901",fontsize=16,color="green",shape="box"];3738[label="yvy891",fontsize=16,color="green",shape="box"];3739[label="yvy901",fontsize=16,color="green",shape="box"];3740[label="yvy891",fontsize=16,color="green",shape="box"];3741[label="yvy901",fontsize=16,color="green",shape="box"];3742[label="yvy891",fontsize=16,color="green",shape="box"];3743[label="yvy901",fontsize=16,color="green",shape="box"];3744[label="yvy891",fontsize=16,color="green",shape="box"];3745[label="yvy901",fontsize=16,color="green",shape="box"];3746[label="yvy891",fontsize=16,color="green",shape="box"];3747[label="yvy901",fontsize=16,color="green",shape="box"];3748[label="yvy891",fontsize=16,color="green",shape="box"];3749[label="yvy901",fontsize=16,color="green",shape="box"];3750 -> 3404[label="",style="dashed", color="red", weight=0]; 3750[label="primMinusNat yvy118200 yvy54200",fontsize=16,color="magenta"];3750 -> 3832[label="",style="dashed", color="magenta", weight=3]; 3750 -> 3833[label="",style="dashed", color="magenta", weight=3]; 3751[label="Pos (Succ yvy118200)",fontsize=16,color="green",shape="box"];3752[label="Neg (Succ yvy54200)",fontsize=16,color="green",shape="box"];3753[label="Pos Zero",fontsize=16,color="green",shape="box"];4144[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4144 -> 4148[label="",style="solid", color="black", weight=3]; 4145[label="FiniteMap.sizeFM (FiniteMap.Branch yvy3630 yvy3631 yvy3632 yvy3633 yvy3634)",fontsize=16,color="black",shape="box"];4145 -> 4149[label="",style="solid", color="black", weight=3]; 4146[label="yvy364",fontsize=16,color="green",shape="box"];4147[label="yvy364",fontsize=16,color="green",shape="box"];3754 -> 3044[label="",style="dashed", color="red", weight=0]; 3754[label="FiniteMap.sizeFM yvy1184",fontsize=16,color="magenta"];3754 -> 3834[label="",style="dashed", color="magenta", weight=3]; 3755 -> 665[label="",style="dashed", color="red", weight=0]; 3755[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy1183",fontsize=16,color="magenta"];3755 -> 3835[label="",style="dashed", color="magenta", weight=3]; 3755 -> 3836[label="",style="dashed", color="magenta", weight=3]; 3756[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"];3756 -> 3837[label="",style="solid", color="black", weight=3]; 3757[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"];3757 -> 3838[label="",style="solid", color="black", weight=3]; 3758[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"];5126[label="yvy543/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3758 -> 5126[label="",style="solid", color="burlywood", weight=9]; 5126 -> 3839[label="",style="solid", color="burlywood", weight=3]; 5127[label="yvy543/FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434",fontsize=10,color="white",style="solid",shape="box"];3758 -> 5127[label="",style="solid", color="burlywood", weight=9]; 5127 -> 3840[label="",style="solid", color="burlywood", weight=3]; 4048[label="yvy540",fontsize=16,color="green",shape="box"];4049 -> 3997[label="",style="dashed", color="red", weight=0]; 4049[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy118 yvy543",fontsize=16,color="magenta"];4049 -> 4094[label="",style="dashed", color="magenta", weight=3]; 4049 -> 4095[label="",style="dashed", color="magenta", weight=3]; 4049 -> 4096[label="",style="dashed", color="magenta", weight=3]; 4049 -> 4097[label="",style="dashed", color="magenta", weight=3]; 4049 -> 4098[label="",style="dashed", color="magenta", weight=3]; 4050[label="yvy541",fontsize=16,color="green",shape="box"];4051[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4052[label="yvy544",fontsize=16,color="green",shape="box"];3776[label="yvy892",fontsize=16,color="green",shape="box"];3777[label="yvy902",fontsize=16,color="green",shape="box"];3778[label="yvy892",fontsize=16,color="green",shape="box"];3779[label="yvy902",fontsize=16,color="green",shape="box"];3780[label="yvy892",fontsize=16,color="green",shape="box"];3781[label="yvy902",fontsize=16,color="green",shape="box"];3782[label="yvy892",fontsize=16,color="green",shape="box"];3783[label="yvy902",fontsize=16,color="green",shape="box"];3784[label="yvy892",fontsize=16,color="green",shape="box"];3785[label="yvy902",fontsize=16,color="green",shape="box"];3786[label="yvy892",fontsize=16,color="green",shape="box"];3787[label="yvy902",fontsize=16,color="green",shape="box"];3788[label="yvy892",fontsize=16,color="green",shape="box"];3789[label="yvy902",fontsize=16,color="green",shape="box"];3790[label="yvy892",fontsize=16,color="green",shape="box"];3791[label="yvy902",fontsize=16,color="green",shape="box"];3792[label="yvy892",fontsize=16,color="green",shape="box"];3793[label="yvy902",fontsize=16,color="green",shape="box"];3794[label="yvy892",fontsize=16,color="green",shape="box"];3795[label="yvy902",fontsize=16,color="green",shape="box"];3796[label="yvy892",fontsize=16,color="green",shape="box"];3797[label="yvy902",fontsize=16,color="green",shape="box"];3798[label="yvy892",fontsize=16,color="green",shape="box"];3799[label="yvy902",fontsize=16,color="green",shape="box"];3800[label="yvy892",fontsize=16,color="green",shape="box"];3801[label="yvy902",fontsize=16,color="green",shape="box"];3802[label="yvy892",fontsize=16,color="green",shape="box"];3803[label="yvy902",fontsize=16,color="green",shape="box"];3804[label="yvy901",fontsize=16,color="green",shape="box"];3805[label="yvy891",fontsize=16,color="green",shape="box"];3806[label="yvy901",fontsize=16,color="green",shape="box"];3807[label="yvy891",fontsize=16,color="green",shape="box"];3808[label="yvy901",fontsize=16,color="green",shape="box"];3809[label="yvy891",fontsize=16,color="green",shape="box"];3810[label="yvy901",fontsize=16,color="green",shape="box"];3811[label="yvy891",fontsize=16,color="green",shape="box"];3812[label="yvy901",fontsize=16,color="green",shape="box"];3813[label="yvy891",fontsize=16,color="green",shape="box"];3814[label="yvy901",fontsize=16,color="green",shape="box"];3815[label="yvy891",fontsize=16,color="green",shape="box"];3816[label="yvy901",fontsize=16,color="green",shape="box"];3817[label="yvy891",fontsize=16,color="green",shape="box"];3818[label="yvy901",fontsize=16,color="green",shape="box"];3819[label="yvy891",fontsize=16,color="green",shape="box"];3820[label="yvy901",fontsize=16,color="green",shape="box"];3821[label="yvy891",fontsize=16,color="green",shape="box"];3822[label="yvy901",fontsize=16,color="green",shape="box"];3823[label="yvy891",fontsize=16,color="green",shape="box"];3824[label="yvy901",fontsize=16,color="green",shape="box"];3825[label="yvy891",fontsize=16,color="green",shape="box"];3826[label="yvy901",fontsize=16,color="green",shape="box"];3827[label="yvy891",fontsize=16,color="green",shape="box"];3828[label="yvy901",fontsize=16,color="green",shape="box"];3829[label="yvy891",fontsize=16,color="green",shape="box"];3830[label="yvy901",fontsize=16,color="green",shape="box"];3831[label="yvy891",fontsize=16,color="green",shape="box"];3832[label="yvy118200",fontsize=16,color="green",shape="box"];3833[label="yvy54200",fontsize=16,color="green",shape="box"];4148[label="Pos Zero",fontsize=16,color="green",shape="box"];4149[label="yvy3632",fontsize=16,color="green",shape="box"];3834[label="yvy1184",fontsize=16,color="green",shape="box"];3835 -> 3044[label="",style="dashed", color="red", weight=0]; 3835[label="FiniteMap.sizeFM yvy1183",fontsize=16,color="magenta"];3835 -> 3865[label="",style="dashed", color="magenta", weight=3]; 3836[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3837[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"];3837 -> 3866[label="",style="solid", color="black", weight=3]; 3838[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"];3838 -> 3867[label="",style="solid", color="black", weight=3]; 3839[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"];3839 -> 3868[label="",style="solid", color="black", weight=3]; 3840[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"];3840 -> 3869[label="",style="solid", color="black", weight=3]; 4094[label="yvy50",fontsize=16,color="green",shape="box"];4095[label="yvy118",fontsize=16,color="green",shape="box"];4096[label="yvy51",fontsize=16,color="green",shape="box"];4097[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4098[label="yvy543",fontsize=16,color="green",shape="box"];3865[label="yvy1183",fontsize=16,color="green",shape="box"];3866[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"];3866 -> 3918[label="",style="solid", color="black", weight=3]; 3867 -> 3997[label="",style="dashed", color="red", weight=0]; 3867[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"];3867 -> 4058[label="",style="dashed", color="magenta", weight=3]; 3867 -> 4059[label="",style="dashed", color="magenta", weight=3]; 3867 -> 4060[label="",style="dashed", color="magenta", weight=3]; 3867 -> 4061[label="",style="dashed", color="magenta", weight=3]; 3867 -> 4062[label="",style="dashed", color="magenta", weight=3]; 3868[label="error []",fontsize=16,color="red",shape="box"];3869 -> 3997[label="",style="dashed", color="red", weight=0]; 3869[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"];3869 -> 4063[label="",style="dashed", color="magenta", weight=3]; 3869 -> 4064[label="",style="dashed", color="magenta", weight=3]; 3869 -> 4065[label="",style="dashed", color="magenta", weight=3]; 3869 -> 4066[label="",style="dashed", color="magenta", weight=3]; 3869 -> 4067[label="",style="dashed", color="magenta", weight=3]; 3918[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"];5128[label="yvy1184/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3918 -> 5128[label="",style="solid", color="burlywood", weight=9]; 5128 -> 3941[label="",style="solid", color="burlywood", weight=3]; 5129[label="yvy1184/FiniteMap.Branch yvy11840 yvy11841 yvy11842 yvy11843 yvy11844",fontsize=10,color="white",style="solid",shape="box"];3918 -> 5129[label="",style="solid", color="burlywood", weight=9]; 5129 -> 3942[label="",style="solid", color="burlywood", weight=3]; 4058[label="yvy1180",fontsize=16,color="green",shape="box"];4059[label="yvy1183",fontsize=16,color="green",shape="box"];4060[label="yvy1181",fontsize=16,color="green",shape="box"];4061[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4062 -> 3997[label="",style="dashed", color="red", weight=0]; 4062[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) yvy50 yvy51 yvy1184 yvy54",fontsize=16,color="magenta"];4062 -> 4099[label="",style="dashed", color="magenta", weight=3]; 4062 -> 4100[label="",style="dashed", color="magenta", weight=3]; 4062 -> 4101[label="",style="dashed", color="magenta", weight=3]; 4062 -> 4102[label="",style="dashed", color="magenta", weight=3]; 4062 -> 4103[label="",style="dashed", color="magenta", weight=3]; 4063[label="yvy5430",fontsize=16,color="green",shape="box"];4064 -> 3997[label="",style="dashed", color="red", weight=0]; 4064[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy118 yvy5433",fontsize=16,color="magenta"];4064 -> 4104[label="",style="dashed", color="magenta", weight=3]; 4064 -> 4105[label="",style="dashed", color="magenta", weight=3]; 4064 -> 4106[label="",style="dashed", color="magenta", weight=3]; 4064 -> 4107[label="",style="dashed", color="magenta", weight=3]; 4064 -> 4108[label="",style="dashed", color="magenta", weight=3]; 4065[label="yvy5431",fontsize=16,color="green",shape="box"];4066[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4067 -> 3997[label="",style="dashed", color="red", weight=0]; 4067[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) yvy540 yvy541 yvy5434 yvy544",fontsize=16,color="magenta"];4067 -> 4109[label="",style="dashed", color="magenta", weight=3]; 4067 -> 4110[label="",style="dashed", color="magenta", weight=3]; 4067 -> 4111[label="",style="dashed", color="magenta", weight=3]; 4067 -> 4112[label="",style="dashed", color="magenta", weight=3]; 4067 -> 4113[label="",style="dashed", color="magenta", weight=3]; 3941[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"];3941 -> 3982[label="",style="solid", color="black", weight=3]; 3942[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"];3942 -> 3983[label="",style="solid", color="black", weight=3]; 4099[label="yvy50",fontsize=16,color="green",shape="box"];4100[label="yvy1184",fontsize=16,color="green",shape="box"];4101[label="yvy51",fontsize=16,color="green",shape="box"];4102[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4103[label="yvy54",fontsize=16,color="green",shape="box"];4104[label="yvy50",fontsize=16,color="green",shape="box"];4105[label="yvy118",fontsize=16,color="green",shape="box"];4106[label="yvy51",fontsize=16,color="green",shape="box"];4107[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4108[label="yvy5433",fontsize=16,color="green",shape="box"];4109[label="yvy540",fontsize=16,color="green",shape="box"];4110[label="yvy5434",fontsize=16,color="green",shape="box"];4111[label="yvy541",fontsize=16,color="green",shape="box"];4112[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4113[label="yvy544",fontsize=16,color="green",shape="box"];3982[label="error []",fontsize=16,color="red",shape="box"];3983 -> 3997[label="",style="dashed", color="red", weight=0]; 3983[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"];3983 -> 4078[label="",style="dashed", color="magenta", weight=3]; 3983 -> 4079[label="",style="dashed", color="magenta", weight=3]; 3983 -> 4080[label="",style="dashed", color="magenta", weight=3]; 3983 -> 4081[label="",style="dashed", color="magenta", weight=3]; 3983 -> 4082[label="",style="dashed", color="magenta", weight=3]; 4078[label="yvy11840",fontsize=16,color="green",shape="box"];4079 -> 3997[label="",style="dashed", color="red", weight=0]; 4079[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy1180 yvy1181 yvy1183 yvy11843",fontsize=16,color="magenta"];4079 -> 4114[label="",style="dashed", color="magenta", weight=3]; 4079 -> 4115[label="",style="dashed", color="magenta", weight=3]; 4079 -> 4116[label="",style="dashed", color="magenta", weight=3]; 4079 -> 4117[label="",style="dashed", color="magenta", weight=3]; 4079 -> 4118[label="",style="dashed", color="magenta", weight=3]; 4080[label="yvy11841",fontsize=16,color="green",shape="box"];4081[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4082 -> 3997[label="",style="dashed", color="red", weight=0]; 4082[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"];4082 -> 4119[label="",style="dashed", color="magenta", weight=3]; 4082 -> 4120[label="",style="dashed", color="magenta", weight=3]; 4082 -> 4121[label="",style="dashed", color="magenta", weight=3]; 4082 -> 4122[label="",style="dashed", color="magenta", weight=3]; 4082 -> 4123[label="",style="dashed", color="magenta", weight=3]; 4114[label="yvy1180",fontsize=16,color="green",shape="box"];4115[label="yvy1183",fontsize=16,color="green",shape="box"];4116[label="yvy1181",fontsize=16,color="green",shape="box"];4117[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4118[label="yvy11843",fontsize=16,color="green",shape="box"];4119[label="yvy50",fontsize=16,color="green",shape="box"];4120[label="yvy11844",fontsize=16,color="green",shape="box"];4121[label="yvy51",fontsize=16,color="green",shape="box"];4122[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4123[label="yvy54",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_esEs2(Right(yvy40000), Right(yvy30000), bbh, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(yvy40000, yvy30000, bcb, bcc, bcd) new_esEs2(Left(yvy40000), Left(yvy30000), app(ty_Maybe, bbg), bag) -> new_esEs3(yvy40000, yvy30000, bbg) new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, app(app(ty_@2, da), db)) -> new_esEs1(yvy40002, yvy30002, da, db) new_esEs3(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(yvy40000, yvy30000, bdc, bdd, bde) new_esEs(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(app(ty_@2, be), bf)) -> new_esEs1(yvy40000, yvy30000, be, bf) new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, app(app(app(ty_@3, dh), ea), eb), dg) -> new_esEs0(yvy40001, yvy30001, dh, ea, eb) new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, app(app(ty_@2, ec), ed), dg) -> new_esEs1(yvy40001, yvy30001, ec, ed) new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, app(ty_Maybe, eg), dg) -> new_esEs3(yvy40001, yvy30001, eg) new_esEs2(Right(yvy40000), Right(yvy30000), bbh, app(app(ty_Either, bcg), bch)) -> new_esEs2(yvy40000, yvy30000, bcg, bch) new_esEs3(Just(yvy40000), Just(yvy30000), app(app(ty_Either, bdh), bea)) -> new_esEs2(yvy40000, yvy30000, bdh, bea) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(ty_[], hd), he) -> new_esEs(yvy40000, yvy30000, hd) new_esEs(:(yvy40000, yvy40001), :(yvy30000, yvy30001), h) -> new_esEs(yvy40001, yvy30001, h) new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, app(ty_Maybe, de)) -> new_esEs3(yvy40002, yvy30002, de) new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(app(ty_Either, fg), fh), cc, dg) -> new_esEs2(yvy40000, yvy30000, fg, fh) new_esEs3(Just(yvy40000), Just(yvy30000), app(ty_Maybe, beb)) -> new_esEs3(yvy40000, yvy30000, beb) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(app(app(ty_@3, hf), hg), hh), he) -> new_esEs0(yvy40000, yvy30000, hf, hg, hh) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(app(ty_Either, bac), bad), he) -> new_esEs2(yvy40000, yvy30000, bac, bad) new_esEs(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(ty_[], ba)) -> new_esEs(yvy40000, yvy30000, ba) new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(ty_Maybe, ga), cc, dg) -> new_esEs3(yvy40000, yvy30000, ga) new_esEs(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs0(yvy40000, yvy30000, bb, bc, bd) new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(yvy40002, yvy30002, ce, cf, cg) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), gb, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs0(yvy40001, yvy30001, gd, ge, gf) new_esEs2(Left(yvy40000), Left(yvy30000), app(app(ty_Either, bbe), bbf), bag) -> new_esEs2(yvy40000, yvy30000, bbe, bbf) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), gb, app(ty_Maybe, hc)) -> new_esEs3(yvy40001, yvy30001, hc) new_esEs3(Just(yvy40000), Just(yvy30000), app(ty_[], bdb)) -> new_esEs(yvy40000, yvy30000, bdb) new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(ty_[], eh), cc, dg) -> new_esEs(yvy40000, yvy30000, eh) new_esEs(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(app(ty_Either, bg), bh)) -> new_esEs2(yvy40000, yvy30000, bg, bh) new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, app(ty_[], df), dg) -> new_esEs(yvy40001, yvy30001, df) new_esEs2(Right(yvy40000), Right(yvy30000), bbh, app(ty_[], bca)) -> new_esEs(yvy40000, yvy30000, bca) new_esEs(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(ty_Maybe, ca)) -> new_esEs3(yvy40000, yvy30000, ca) new_esEs2(Right(yvy40000), Right(yvy30000), bbh, app(ty_Maybe, bda)) -> new_esEs3(yvy40000, yvy30000, bda) new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, app(ty_[], cd)) -> new_esEs(yvy40002, yvy30002, cd) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(ty_Maybe, bae), he) -> new_esEs3(yvy40000, yvy30000, bae) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(app(ty_@2, baa), bab), he) -> new_esEs1(yvy40000, yvy30000, baa, bab) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), gb, app(ty_[], gc)) -> new_esEs(yvy40001, yvy30001, gc) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), gb, app(app(ty_Either, ha), hb)) -> new_esEs2(yvy40001, yvy30001, ha, hb) new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, app(app(ty_Either, dc), dd)) -> new_esEs2(yvy40002, yvy30002, dc, dd) new_esEs2(Right(yvy40000), Right(yvy30000), bbh, app(app(ty_@2, bce), bcf)) -> new_esEs1(yvy40000, yvy30000, bce, bcf) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), gb, app(app(ty_@2, gg), gh)) -> new_esEs1(yvy40001, yvy30001, gg, gh) new_esEs2(Left(yvy40000), Left(yvy30000), app(app(ty_@2, bbc), bbd), bag) -> new_esEs1(yvy40000, yvy30000, bbc, bbd) new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(app(app(ty_@3, fa), fb), fc), cc, dg) -> new_esEs0(yvy40000, yvy30000, fa, fb, fc) new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(app(ty_@2, fd), ff), cc, dg) -> new_esEs1(yvy40000, yvy30000, fd, ff) new_esEs2(Left(yvy40000), Left(yvy30000), app(ty_[], baf), bag) -> new_esEs(yvy40000, yvy30000, baf) new_esEs2(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, bah), bba), bbb), bag) -> new_esEs0(yvy40000, yvy30000, bah, bba, bbb) new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, app(app(ty_Either, ee), ef), dg) -> new_esEs2(yvy40001, yvy30001, ee, ef) new_esEs3(Just(yvy40000), Just(yvy30000), app(app(ty_@2, bdf), bdg)) -> new_esEs1(yvy40000, yvy30000, bdf, bdg) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs3(Just(yvy40000), Just(yvy30000), app(app(ty_Either, bdh), bea)) -> new_esEs2(yvy40000, yvy30000, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(yvy40000, yvy30000, bdc, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Just(yvy40000), Just(yvy30000), app(ty_Maybe, beb)) -> new_esEs3(yvy40000, yvy30000, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Just(yvy40000), Just(yvy30000), app(ty_[], bdb)) -> new_esEs(yvy40000, yvy30000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Just(yvy40000), Just(yvy30000), app(app(ty_@2, bdf), bdg)) -> new_esEs1(yvy40000, yvy30000, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(app(ty_Either, bg), bh)) -> new_esEs2(yvy40000, yvy30000, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs0(yvy40000, yvy30000, bb, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(ty_Maybe, ca)) -> new_esEs3(yvy40000, yvy30000, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(app(ty_@2, be), bf)) -> new_esEs1(yvy40000, yvy30000, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(app(ty_Either, fg), fh), cc, dg) -> new_esEs2(yvy40000, yvy30000, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, app(app(ty_Either, dc), dd)) -> new_esEs2(yvy40002, yvy30002, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, app(app(ty_Either, ee), ef), dg) -> new_esEs2(yvy40001, yvy30001, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, app(app(app(ty_@3, dh), ea), eb), dg) -> new_esEs0(yvy40001, yvy30001, dh, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(yvy40002, yvy30002, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(app(app(ty_@3, fa), fb), fc), cc, dg) -> new_esEs0(yvy40000, yvy30000, fa, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, app(ty_Maybe, eg), dg) -> new_esEs3(yvy40001, yvy30001, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, app(ty_Maybe, de)) -> new_esEs3(yvy40002, yvy30002, de) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(ty_Maybe, ga), cc, dg) -> new_esEs3(yvy40000, yvy30000, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(ty_[], eh), cc, dg) -> new_esEs(yvy40000, yvy30000, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, app(ty_[], df), dg) -> new_esEs(yvy40001, yvy30001, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, app(ty_[], cd)) -> new_esEs(yvy40002, yvy30002, cd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, app(app(ty_@2, da), db)) -> new_esEs1(yvy40002, yvy30002, da, db) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, app(app(ty_@2, ec), ed), dg) -> new_esEs1(yvy40001, yvy30001, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(app(ty_@2, fd), ff), cc, dg) -> new_esEs1(yvy40000, yvy30000, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(app(ty_Either, bac), bad), he) -> new_esEs2(yvy40000, yvy30000, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), gb, app(app(ty_Either, ha), hb)) -> new_esEs2(yvy40001, yvy30001, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Right(yvy40000), Right(yvy30000), bbh, app(app(ty_Either, bcg), bch)) -> new_esEs2(yvy40000, yvy30000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Left(yvy40000), Left(yvy30000), app(app(ty_Either, bbe), bbf), bag) -> new_esEs2(yvy40000, yvy30000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(app(app(ty_@3, hf), hg), hh), he) -> new_esEs0(yvy40000, yvy30000, hf, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), gb, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs0(yvy40001, yvy30001, gd, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), gb, app(ty_Maybe, hc)) -> new_esEs3(yvy40001, yvy30001, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(ty_Maybe, bae), he) -> new_esEs3(yvy40000, yvy30000, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(ty_[], hd), he) -> new_esEs(yvy40000, yvy30000, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), gb, app(ty_[], gc)) -> new_esEs(yvy40001, yvy30001, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(app(ty_@2, baa), bab), he) -> new_esEs1(yvy40000, yvy30000, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), gb, app(app(ty_@2, gg), gh)) -> new_esEs1(yvy40001, yvy30001, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Right(yvy40000), Right(yvy30000), bbh, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(yvy40000, yvy30000, bcb, bcc, bcd) 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, bah), bba), bbb), bag) -> new_esEs0(yvy40000, yvy30000, bah, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Left(yvy40000), Left(yvy30000), app(ty_Maybe, bbg), bag) -> new_esEs3(yvy40000, yvy30000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Right(yvy40000), Right(yvy30000), bbh, app(ty_Maybe, bda)) -> new_esEs3(yvy40000, yvy30000, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(Right(yvy40000), Right(yvy30000), bbh, app(ty_[], bca)) -> new_esEs(yvy40000, yvy30000, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(Left(yvy40000), Left(yvy30000), app(ty_[], baf), bag) -> new_esEs(yvy40000, yvy30000, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(yvy40000, yvy40001), :(yvy30000, yvy30001), h) -> new_esEs(yvy40001, yvy30001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(ty_[], ba)) -> new_esEs(yvy40000, yvy30000, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Right(yvy40000), Right(yvy30000), bbh, app(app(ty_@2, bce), bcf)) -> new_esEs1(yvy40000, yvy30000, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Left(yvy40000), Left(yvy30000), app(app(ty_@2, bbc), bbd), bag) -> new_esEs1(yvy40000, yvy30000, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, bb)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 3 less nodes. ---------------------------------------- (25) Complex Obligation (AND) ---------------------------------------- (26) 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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, bb)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) 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_compare25(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_compare25(yvy400, yvy300, bb)), bb, bc)) ---------------------------------------- (28) 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_compare25(yvy400, yvy300, bb)), bb, bc) The TRS R consists of the following rules: new_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, bb)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (29) 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)) ---------------------------------------- (30) 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_compare25(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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, bb)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (31) 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)) ---------------------------------------- (32) 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_compare25(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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, bb)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) 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)) ---------------------------------------- (34) 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_compare25(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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, bb)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (35) 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_compare25(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_compare25(yvy42, yvy36, h)), h, ba)) ---------------------------------------- (36) 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_compare25(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_compare25(yvy42, yvy36, h)), h, ba) The TRS R consists of the following rules: new_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, bb)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (37) 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_compare25(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_compare25(yvy42, yvy36, h)), h, ba)) ---------------------------------------- (38) 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_compare25(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_compare25(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_compare25(yvy42, yvy36, h)), h, ba) The TRS R consists of the following rules: new_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, bb)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (39) 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_compare25(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_compare25(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_compare25(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 ---------------------------------------- (40) YES ---------------------------------------- (41) 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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, bb)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (42) 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 ---------------------------------------- (43) YES ---------------------------------------- (44) 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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_primCompAux0(x0, x1, x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (45) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 3 less nodes. ---------------------------------------- (46) Complex Obligation (AND) ---------------------------------------- (47) 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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_primCompAux0(x0, x1, x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (48) 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_compare25(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_compare25(yvy400, yvy300, h)), h, ba)) ---------------------------------------- (49) 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_compare25(yvy400, yvy300, h)), h, ba) The TRS R consists of the following rules: new_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_primCompAux0(x0, x1, x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (50) 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)) ---------------------------------------- (51) 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_compare25(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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_primCompAux0(x0, x1, x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (52) 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)) ---------------------------------------- (53) 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_compare25(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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_primCompAux0(x0, x1, x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (54) 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_compare25(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_compare25(yvy23, yvy17, bb)), bb, bc)) ---------------------------------------- (55) 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_compare25(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_compare25(yvy23, yvy17, bb)), bb, bc) The TRS R consists of the following rules: new_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_primCompAux0(x0, x1, x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (56) 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_compare25(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_compare25(yvy23, yvy17, bb)), bb, bc)) ---------------------------------------- (57) 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_compare25(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_compare25(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_compare25(yvy23, yvy17, bb)), bb, bc) The TRS R consists of the following rules: new_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_primCompAux0(x0, x1, x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (58) 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_compare25(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_compare25(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_compare25(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 ---------------------------------------- (59) YES ---------------------------------------- (60) 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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbh), bca), bcb), bbe) -> new_ltEs12(yvy890, yvy900, bbh, bca, bcb) new_ltEs20(yvy891, yvy901, app(ty_[], chb)) -> new_ltEs11(yvy891, yvy901, chb) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_lt5(yvy891, yvy901, cdh, cea) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_lt20(yvy890, yvy900, app(ty_Ratio, dac)) -> new_lt10(yvy890, yvy900, dac) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy890, yvy900, cge, cgf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_lt19(yvy891, yvy901, cdf, cdg) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbb, fbc, fbd) -> new_esEs12(new_compare27(yvy152, yvy155, fbb, fbc, fbd), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_esEs19(yvy152, yvy155, bh, ca) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bcc), bbe) -> new_ltEs13(yvy890, yvy900, bcc) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cgb)) -> new_ltEs13(yvy890, yvy900, cgb) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eeg)) -> new_esEs17(yvy40000, yvy30000, eeg) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bec, bed) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebe, ebf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebe), new_esEs35(yvy40001, yvy30001, ebf)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], gg), gh) -> new_esEs17(yvy40000, yvy30000, gg) new_compare25(yvy400, yvy300, app(ty_Ratio, bhh)) -> new_compare26(yvy400, yvy300, bhh) new_lt19(yvy152, yvy155, dfe, dff) -> new_esEs12(new_compare30(yvy152, yvy155, dfe, dff), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bef)) -> new_lt6(yvy152, yvy155, bef) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hh), gh) -> new_esEs23(yvy40000, yvy30000, hh) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fch)) -> new_esEs17(yvy153, yvy156, fch) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt16(yvy165, yvy167, ehg, ehh, faa) new_esEs39(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_esEs26(yvy152, yvy155, cbb) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(yvy891, yvy901, cdb, cdc, cdd) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_esEs23(yvy153, yvy156, fdd) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs13(yvy4001, yvy3001, dbf, dbg, dbh) new_lt21(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_lt19(yvy165, yvy167, fac, fad) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs17(yvy4000, yvy3000, bfa) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bch, bbe) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbg)) -> new_ltEs11(yvy892, yvy902, cbg) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cec)) -> new_esEs17(yvy890, yvy900, cec) new_lt21(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_lt5(yvy165, yvy167, fae, faf) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, be, bf, bg) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdd)) -> new_lt4(yvy153, yvy156, fdd) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fac), fad)) -> new_esEs22(yvy165, yvy167, fac, fad) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(yvy154, yvy157, fcc, fcd) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs13(yvy40000, yvy30000, bfc, bfd, bfe) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(yvy4002, yvy3002, dhb, dhc, dhd) new_esEs23(Nothing, Just(yvy30000), ebg) -> False new_esEs23(Just(yvy40000), Nothing, ebg) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cha)) -> new_ltEs9(yvy891, yvy901, cha) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_[], bac)) -> new_esEs17(yvy40000, yvy30000, bac) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cgg, cgh) -> new_pePe(new_lt20(yvy890, yvy900, cgg), new_asAs(new_esEs34(yvy890, yvy900, cgg), new_ltEs20(yvy891, yvy901, cgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, dg)) -> new_esEs26(yvy40002, yvy30002, dg) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_esEs22(yvy153, yvy156, fde, fdf) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bee) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], cda)) -> new_lt6(yvy891, yvy901, cda) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbe) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fee), fef)) -> new_esEs19(yvy4000, yvy3000, fee, fef) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebg) -> True new_lt12(yvy890, yvy900, app(ty_[], cec)) -> new_lt6(yvy890, yvy900, cec) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dah)) -> new_esEs23(yvy890, yvy900, dah) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs17(yvy4000, yvy3000, dfg) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bgc)) -> new_esEs26(yvy40000, yvy30000, bgc) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], beh)) -> new_ltEs11(yvy89, yvy90, beh) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bgg)) -> new_ltEs11(yvy96, yvy97, bgg) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, ga), gb)) -> new_esEs22(yvy40000, yvy30000, ga, gb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbe) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fag, fah, fba) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fag), new_asAs(new_esEs39(yvy152, yvy155, fag), new_pePe(new_lt23(yvy153, yvy156, fah), new_asAs(new_esEs38(yvy153, yvy156, fah), new_ltEs23(yvy154, yvy157, fba)))), fag, fah, fba) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcd), bce), bbe) -> new_ltEs5(yvy890, yvy900, bcd, bce) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_esEs23(yvy890, yvy900, ceg) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cae)) -> new_compare7(yvy400, yvy300, cae) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edd)) -> new_esEs26(yvy40001, yvy30001, edd) new_lt22(yvy152, yvy155, app(ty_Maybe, bd)) -> new_lt4(yvy152, yvy155, bd) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, beh) -> new_fsEs(new_compare0(yvy89, yvy90, beh)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) new_compare30(Right(yvy4000), Right(yvy3000), caf, cag) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cag), caf, cag) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_lt16(yvy152, yvy155, fbb, fbc, fbd) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs12(yvy891, yvy901, chc, chd, che) new_compare110(yvy205, yvy206, True, ebh, eca) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehf)) -> new_esEs17(yvy165, yvy167, ehf) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, db), dc)) -> new_esEs19(yvy40002, yvy30002, db, dc) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), beg) -> new_asAs(new_esEs30(yvy40000, yvy30000, beg), new_esEs29(yvy40001, yvy30001, beg)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efg)) -> new_esEs23(yvy40000, yvy30000, efg) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs19(yvy4000, yvy3000, dgc, dgd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bff), bfg)) -> new_esEs19(yvy40000, yvy30000, bff, bfg) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Maybe, bbc)) -> new_esEs23(yvy40000, yvy30000, bbc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efe), eff)) -> new_esEs22(yvy40000, yvy30000, efe, eff) new_esEs33(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_esEs22(yvy890, yvy900, ceh, cfa) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs13(yvy40001, yvy30001, ecd, ece, ecf) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy892, yvy902, cbh, cca, ccb) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fch)) -> new_lt6(yvy153, yvy156, fch) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cbc, cbd, cbe) -> new_pePe(new_lt12(yvy890, yvy900, cbc), new_asAs(new_esEs33(yvy890, yvy900, cbc), new_pePe(new_lt11(yvy891, yvy901, cbd), new_asAs(new_esEs32(yvy891, yvy901, cbd), new_ltEs19(yvy892, yvy902, cbe))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cb, cc, cd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cb), new_asAs(new_esEs15(yvy40001, yvy30001, cc), new_esEs14(yvy40002, yvy30002, cd))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, ge, gf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chf)) -> new_ltEs13(yvy891, yvy901, chf) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], fb)) -> new_esEs17(yvy40000, yvy30000, fb) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs22(yvy4000, yvy3000, dge, dgf) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cff)) -> new_ltEs11(yvy890, yvy900, cff) new_esEs39(yvy152, yvy155, app(ty_[], bef)) -> new_esEs17(yvy152, yvy155, bef) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, gc)) -> new_esEs23(yvy40000, yvy30000, gc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_lt16(yvy890, yvy900, ced, cee, cef) new_esEs39(yvy152, yvy155, app(ty_Maybe, bd)) -> new_esEs23(yvy152, yvy155, bd) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eef)) -> new_esEs26(yvy40000, yvy30000, eef) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], bfa) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs12(yvy890, yvy900, cfg, cfh, cga) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdf), cdg)) -> new_esEs22(yvy891, yvy901, cdf, cdg) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eba), ebb)) -> new_esEs22(yvy4001, yvy3001, eba, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hf), hg), gh) -> new_esEs22(yvy40000, yvy30000, hf, hg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs12(yvy96, yvy97, bgh, bha, bhb) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cgc), cgd)) -> new_ltEs5(yvy890, yvy900, cgc, cgd) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cah, cba) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, cah), new_esEs10(yvy4001, yvy3001, cba)), cah, cba) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbe)) -> new_ltEs9(yvy154, yvy157, fbe) new_lt23(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_lt10(yvy153, yvy156, fcg) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbe) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs13(yvy40000, yvy30000, edf, edg, edh) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, eab)) -> new_esEs26(yvy4002, yvy3002, eab) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cde)) -> new_esEs23(yvy891, yvy901, cde) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fge) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehc), ehd)) -> new_ltEs17(yvy166, yvy168, ehc, ehd) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ebc)) -> new_esEs23(yvy4001, yvy3001, ebc) new_compare25(yvy400, yvy300, app(app(app(ty_@3, cab), cac), cad)) -> new_compare27(yvy400, yvy300, cab, cac, cad) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs13(yvy40000, yvy30000, fc, fd, ff) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs13(yvy152, yvy155, fbb, fbc, fbd) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ddc), ddd)) -> new_esEs19(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs13(yvy40000, yvy30000, eeh, efa, efb) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bhc)) -> new_ltEs13(yvy96, yvy97, bhc) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ecg), ech)) -> new_esEs19(yvy40001, yvy30001, ecg, ech) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fce), fcf)) -> new_ltEs17(yvy154, yvy157, fce, fcf) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs13(yvy153, yvy156, fda, fdb, fdc) new_lt5(yvy152, yvy155, bh, ca) -> new_esEs12(new_compare8(yvy152, yvy155, bh, ca), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs13(yvy40001, yvy30001, ea, eb, ec) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, ceg)) -> new_lt4(yvy890, yvy900, ceg) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dca), dcb)) -> new_esEs19(yvy4001, yvy3001, dca, dcb) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cf), cg), da)) -> new_esEs13(yvy40002, yvy30002, cf, cg, da) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_esEs19(yvy890, yvy900, cfb, cfc) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffg), ffh)) -> new_esEs19(yvy4000, yvy3000, ffg, ffh) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(yvy89, yvy90, cgg, cgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(yvy165, yvy167, ehg, ehh, faa) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(ty_Ratio, bbd)) -> new_esEs26(yvy40000, yvy30000, bbd) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gd)) -> new_esEs26(yvy40000, yvy30000, gd) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), bfa) -> new_asAs(new_esEs31(yvy40000, yvy30000, bfa), new_esEs17(yvy40001, yvy30001, bfa)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, ega, egb) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebg)) -> new_esEs23(yvy4000, yvy3000, ebg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ecb) -> new_fsEs(new_compare26(yvy89, yvy90, ecb)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, dea, deb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, deb), dea, deb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, fa)) -> new_esEs26(yvy40001, yvy30001, fa) new_compare25(yvy400, yvy300, app(app(ty_@2, cah), cba)) -> new_compare8(yvy400, yvy300, cah, cba) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fcg)) -> new_esEs26(yvy153, yvy156, fcg) new_esEs5(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs17(yvy4001, yvy3001, eac) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, efh)) -> new_esEs26(yvy40000, yvy30000, efh) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ecb)) -> new_ltEs9(yvy89, yvy90, ecb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, bab), gh)) -> new_esEs22(yvy4000, yvy3000, bab, gh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_esEs19(yvy890, yvy900, dbc, dbd) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, caf), cag)) -> new_compare30(yvy400, yvy300, caf, cag) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs13(yvy40000, yvy30000, bad, bae, baf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccd), cce)) -> new_ltEs5(yvy892, yvy902, ccd, cce) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_esEs26(yvy165, yvy167, ehe) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bgb)) -> new_esEs23(yvy40000, yvy30000, bgb) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_Either, bba), bbb)) -> new_esEs22(yvy40000, yvy30000, bba, bbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dha)) -> new_esEs17(yvy4002, yvy3002, dha) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eaa)) -> new_esEs23(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, ega, egb) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, ega), new_asAs(new_esEs37(yvy165, yvy167, ega), new_ltEs22(yvy166, yvy168, egb)), ega, egb) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], bfb)) -> new_esEs17(yvy40000, yvy30000, bfb) new_ltEs21(yvy103, yvy104, app(ty_Maybe, deh)) -> new_ltEs13(yvy103, yvy104, deh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy40000, yvy30000, fg, fh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], dh)) -> new_esEs17(yvy40001, yvy30001, dh) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs13(yvy890, yvy900, ced, cee, cef) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbe) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egc)) -> new_ltEs9(yvy166, yvy168, egc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cbb) -> new_esEs12(new_compare26(yvy152, yvy155, cbb), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), caf, cag) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, feg), feh)) -> new_esEs22(yvy4000, yvy3000, feg, feh) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs13(yvy4000, yvy3000, cb, cc, cd) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, eda), edb)) -> new_esEs22(yvy40001, yvy30001, eda, edb) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, eh)) -> new_esEs23(yvy40001, yvy30001, eh) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bfh), bga)) -> new_esEs22(yvy40000, yvy30000, bfh, bga) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egd)) -> new_ltEs11(yvy166, yvy168, egd) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdh), cea)) -> new_esEs19(yvy891, yvy901, cdh, cea) new_compare0([], :(yvy3000, yvy3001), caa) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhg), dhh)) -> new_esEs22(yvy4002, yvy3002, dhg, dhh) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bch, bbe) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eag), eah)) -> new_esEs19(yvy4001, yvy3001, eag, eah) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], caa)) -> new_compare0(yvy400, yvy300, caa) new_esEs10(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs17(yvy4001, yvy3001, dbe) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_lt10(yvy890, yvy900, ceb) new_ltEs20(yvy891, yvy901, app(app(ty_Either, chg), chh)) -> new_ltEs5(yvy891, yvy901, chg, chh) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgd, bge) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, dd), de)) -> new_esEs22(yvy40002, yvy30002, dd, de) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbe) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt16(yvy153, yvy156, fda, fdb, fdc) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs17(yvy4000, yvy3000, ffc) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], caa) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], ede)) -> new_esEs17(yvy40000, yvy30000, ede) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), caf, cag) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fea)) -> new_esEs17(yvy4000, yvy3000, fea) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcf), bcg), bbe) -> new_ltEs17(yvy890, yvy900, bcf, bcg) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, beg)) -> new_esEs26(yvy4000, yvy3000, beg) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfd) -> True new_ltEs13(Just(yvy890), Nothing, cfd) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffa)) -> new_esEs23(yvy4000, yvy3000, ffa) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ef), eg)) -> new_esEs22(yvy40001, yvy30001, ef, eg) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eea), eeb)) -> new_esEs19(yvy40000, yvy30000, eea, eeb) new_ltEs19(yvy892, yvy902, app(ty_Maybe, ccc)) -> new_ltEs13(yvy892, yvy902, ccc) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, fab)) -> new_lt4(yvy165, yvy167, fab) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fge) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fge), fge) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(yvy4000, yvy3000, ebe, ebf) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebd)) -> new_esEs26(yvy4001, yvy3001, ebd) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cde)) -> new_lt4(yvy891, yvy901, cde) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs23(yvy4000, yvy3000, ddg) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_esEs22(yvy152, yvy155, dfe, dff) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fae), faf)) -> new_esEs19(yvy165, yvy167, fae, faf) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs22(yvy4000, yvy3000, fga, fgb) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], ce)) -> new_esEs17(yvy40002, yvy30002, ce) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, cch)) -> new_lt10(yvy891, yvy901, cch) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bch), bbe)) -> new_ltEs5(yvy89, yvy90, bch, bbe) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfc), dfd)) -> new_ltEs17(yvy103, yvy104, dfc, dfd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(yvy4001, yvy3001, ead, eae, eaf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dce)) -> new_esEs23(yvy4001, yvy3001, dce) new_lt22(yvy152, yvy155, app(ty_Ratio, cbb)) -> new_lt10(yvy152, yvy155, cbb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbf)) -> new_ltEs11(yvy154, yvy157, fbf) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cae) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(yvy96, yvy97, bhd, bhe) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cab, cac, cad) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, cab), new_asAs(new_esEs5(yvy4001, yvy3001, cac), new_esEs4(yvy4002, yvy3002, cad))), cab, cac, cad) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], cda)) -> new_esEs17(yvy891, yvy901, cda) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs23(yvy4000, yvy3000, fgc) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, dea, deb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dcc), dcd)) -> new_esEs22(yvy4001, yvy3001, dcc, dcd) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bch, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbg), bbe) -> new_ltEs11(yvy890, yvy900, bbg) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bd) -> new_esEs12(new_compare7(yvy152, yvy155, bd), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs13(yvy890, yvy900, dae, daf, dag) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(yvy4000, yvy3000, dfh, dga, dgb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efc), efd)) -> new_esEs19(yvy40000, yvy30000, efc, efd) new_compare7(Nothing, Nothing, cae) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dec)) -> new_ltEs9(yvy103, yvy104, dec) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, be, bf, bg) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, be, bf, bg) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy890, yvy900, dba, dbb) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, ge, gf) -> LT new_lt6(yvy152, yvy155, bef) -> new_esEs12(new_compare0(yvy152, yvy155, bef), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(yvy4000, yvy3000, dch, dda, ddb) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dde), ddf)) -> new_esEs22(yvy4000, yvy3000, dde, ddf) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dae), daf), dag)) -> new_lt16(yvy890, yvy900, dae, daf, dag) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbe) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgd)) -> new_esEs26(yvy4000, yvy3000, fgd) new_ltEs20(yvy891, yvy901, app(app(ty_@2, daa), dab)) -> new_ltEs17(yvy891, yvy901, daa, dab) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), bab, gh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), bab, gh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbf), bbe) -> new_ltEs9(yvy890, yvy900, bbf) new_compare0(:(yvy4000, yvy4001), [], caa) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dbc), dbd)) -> new_lt5(yvy890, yvy900, dbc, dbd) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbe) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dba), dbb)) -> new_lt19(yvy890, yvy900, dba, dbb) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, df)) -> new_esEs23(yvy40002, yvy30002, df) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy892, yvy902, ccf, ccg) new_compare30(Left(yvy4000), Left(yvy3000), caf, cag) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, caf), caf, cag) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehf)) -> new_lt6(yvy165, yvy167, ehf) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fab)) -> new_esEs23(yvy165, yvy167, fab) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs13(yvy4000, yvy3000, ffd, ffe, fff) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddh)) -> new_esEs26(yvy4000, yvy3000, ddh) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, baa), gh) -> new_esEs26(yvy40000, yvy30000, baa) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfe)) -> new_ltEs9(yvy890, yvy900, cfe) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_esEs19(yvy153, yvy156, fdg, fdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy89, yvy90, cbc, cbd, cbe) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), caa) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, caa), caa) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs26(yvy4000, yvy3000, dgh) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, dac)) -> new_esEs26(yvy890, yvy900, dac) new_lt21(yvy165, yvy167, app(ty_Ratio, ehe)) -> new_lt10(yvy165, yvy167, ehe) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, cfb), cfc)) -> new_lt5(yvy890, yvy900, cfb, cfc) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs12(yvy103, yvy104, dee, def, deg) new_lt12(yvy890, yvy900, app(app(ty_Either, ceh), cfa)) -> new_lt19(yvy890, yvy900, ceh, cfa) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egh)) -> new_ltEs13(yvy166, yvy168, egh) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cae) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cae), cae) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, ed), ee)) -> new_esEs19(yvy40001, yvy30001, ed, ee) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ecc)) -> new_esEs17(yvy40001, yvy30001, ecc) new_compare7(Nothing, Just(yvy3000), cae) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ha), hb), hc), gh) -> new_esEs13(yvy40000, yvy30000, ha, hb, hc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgf)) -> new_ltEs9(yvy96, yvy97, bgf) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fag, fah, fba) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbg), fbh), fca)) -> new_ltEs12(yvy154, yvy157, fbg, fbh, fca) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, cch)) -> new_esEs26(yvy891, yvy901, cch) new_ltEs21(yvy103, yvy104, app(app(ty_Either, dfa), dfb)) -> new_ltEs5(yvy103, yvy104, dfa, dfb) new_esEs33(yvy890, yvy900, app(ty_Ratio, ceb)) -> new_esEs26(yvy890, yvy900, ceb) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, ge, gf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, ge, gf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, dah)) -> new_lt4(yvy890, yvy900, dah) new_compare16(yvy189, yvy190, False, bee) -> GT new_compare24(yvy96, yvy97, False, bgd, bge) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgd), bgd, bge) new_ltEs22(yvy166, yvy168, app(app(ty_Either, eha), ehb)) -> new_ltEs5(yvy166, yvy168, eha, ehb) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hd), he), gh) -> new_esEs19(yvy40000, yvy30000, hd, he) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edc)) -> new_esEs23(yvy40001, yvy30001, edc) new_lt23(yvy153, yvy156, app(app(ty_Either, fde), fdf)) -> new_lt19(yvy153, yvy156, fde, fdf) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs12(yvy166, yvy168, ege, egf, egg) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), bab, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fdg), fdh)) -> new_lt5(yvy153, yvy156, fdg, fdh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), bab, app(app(ty_@2, bag), bah)) -> new_esEs19(yvy40000, yvy30000, bag, bah) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbf)) -> new_ltEs9(yvy892, yvy902, cbf) new_ltEs5(Right(yvy890), Right(yvy900), bch, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhf), bhg)) -> new_ltEs17(yvy96, yvy97, bhf, bhg) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dcg)) -> new_esEs17(yvy4000, yvy3000, dcg) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfd)) -> new_ltEs13(yvy89, yvy90, cfd) new_esEs34(yvy890, yvy900, app(ty_[], dad)) -> new_esEs17(yvy890, yvy900, dad) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffb)) -> new_esEs26(yvy4000, yvy3000, ffb) new_compare110(yvy205, yvy206, False, ebh, eca) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy891, yvy901, cdb, cdc, cdd) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbe) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dad)) -> new_lt6(yvy890, yvy900, dad) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bec, bed) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, be, bf, bg) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eec), eed)) -> new_esEs22(yvy40000, yvy30000, eec, eed) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcb)) -> new_ltEs13(yvy154, yvy157, fcb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], bfa) -> False new_esEs17([], :(yvy30000, yvy30001), bfa) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bh), ca)) -> new_lt5(yvy152, yvy155, bh, ca) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfe), dff)) -> new_lt19(yvy152, yvy155, dfe, dff) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcf)) -> new_esEs26(yvy4001, yvy3001, dcf) new_ltEs21(yvy103, yvy104, app(ty_[], ded)) -> new_ltEs11(yvy103, yvy104, ded) new_ltEs13(Nothing, Just(yvy900), cfd) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(yvy4002, yvy3002, dhe, dhf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs13(yvy4000, yvy3000, feb, fec, fed) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eee)) -> new_esEs23(yvy40000, yvy30000, eee) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs23(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, EQ) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(EQ, LT) new_compare7(Just(x0), Nothing, x1) new_compare28(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_fsEs(x0) new_lt22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Nothing, x1) new_esEs16(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, True, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_compare211(x0, x1, True, x2, x3) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare19(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_primCompAux0(x0, x1, x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, True, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs17([], :(x0, x1), x2) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_compare7(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare0([], [], x0) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs23(Nothing, Nothing, x0) new_esEs32(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs17([], [], x0) new_esEs8(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2) new_lt22(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs11(x0, x1, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_Int) new_compare16(x0, x1, False, x2) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Integer) new_esEs23(Just(x0), Nothing, x1) new_esEs14(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_lt13(x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_lt4(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_compare7(Nothing, Nothing, x0) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_esEs36(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Double) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, x2, x3) new_lt20(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_compare25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_asAs(True, x0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare212(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(:(x0, x1), [], x2) new_ltEs10(x0, x1) new_lt19(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_lt22(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_not(False) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, False, x4, x5) new_lt11(x0, x1, ty_Int) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(True, False) new_compare19(False, True) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (61) 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 ---------------------------------------- (62) YES ---------------------------------------- (63) 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. ---------------------------------------- (64) 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 ---------------------------------------- (65) YES ---------------------------------------- (66) 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_ltEs20(yvy891, yvy901, app(ty_[], dff)) -> new_ltEs11(yvy891, yvy901, dff) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) 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_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_splitLT22(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, eh, fa) -> new_splitLT21(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, eh, fa) new_pePe(True, yvy305) -> True new_splitLT22(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, eh, fa) -> new_splitLT21(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, eh, fa) new_ltEs5(Right(yvy890), Right(yvy900), ccf, app(ty_Maybe, dbd)) -> new_ltEs13(yvy890, yvy900, dbd) new_lt20(yvy890, yvy900, app(ty_Ratio, dgg)) -> new_lt10(yvy890, yvy900, dgg) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy890, yvy900, bea, beb) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fbg, fbh, fca) -> new_esEs12(new_compare27(yvy152, yvy155, fbg, fbh, fca), LT) new_esEs18(True, True) -> True new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), ccf, ty_Integer) -> new_ltEs8(yvy890, yvy900) 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_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ece, ecf) -> new_asAs(new_esEs36(yvy40000, yvy30000, ece), new_esEs35(yvy40001, yvy30001, ecf)) new_lt19(yvy152, yvy155, cac, cad) -> new_esEs12(new_compare30(yvy152, yvy155, cac, cad), LT) new_compare28(LT, LT) -> EQ new_splitGT16(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, fb, fc) -> yvy22 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_emptyFM(h, ba) -> EmptyFM new_esEs38(yvy153, yvy156, app(ty_[], fde)) -> new_esEs17(yvy153, yvy156, fde) new_lt21(yvy165, yvy167, app(app(app(ty_@3, fad), fae), faf)) -> new_lt16(yvy165, yvy167, fad, fae, faf) new_esEs39(yvy152, yvy155, app(ty_Ratio, dfd)) -> new_esEs26(yvy152, yvy155, dfd) new_lt11(yvy891, yvy901, app(app(app(ty_@3, baf), bag), bah)) -> new_lt16(yvy891, yvy901, baf, bag, bah) new_esEs38(yvy153, yvy156, app(ty_Maybe, fea)) -> new_esEs23(yvy153, yvy156, fea) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) 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_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Left(yvy890), Right(yvy900), ccf, ccg) -> True new_ltEs5(Right(yvy890), Right(yvy900), ccf, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, ca) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], bbg)) -> new_esEs17(yvy890, yvy900, bbg) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, bc, bd, be) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, fah), fba)) -> new_esEs22(yvy165, yvy167, fah, fba) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fch), fda)) -> new_ltEs5(yvy154, yvy157, fch, fda) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dcg), dch), dda)) -> new_esEs13(yvy40000, yvy30000, dcg, dch, dda) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_ltEs20(yvy891, yvy901, app(ty_Ratio, dfe)) -> new_ltEs9(yvy891, yvy901, dfe) new_esEs22(Right(yvy40000), Right(yvy30000), dd, app(ty_[], de)) -> new_esEs17(yvy40000, yvy30000, de) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, cef)) -> new_esEs26(yvy40002, yvy30002, cef) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], bae)) -> new_lt6(yvy891, yvy901, bae) new_primCompAux00(yvy56, LT) -> LT new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) 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_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_splitGT13(yvy31, yvy32, yvy33, yvy34, LT, h, ba) -> new_mkVBalBranch0([], yvy31, new_splitGT5(yvy33, h, ba), yvy34, h, ba) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], cae)) -> new_esEs17(yvy4000, yvy3000, cae) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, ddg)) -> new_esEs26(yvy40000, yvy30000, ddg) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_primPlusInt0(yvy11820, Neg(yvy5420)) -> new_primMinusNat0(yvy11820, yvy5420) new_ltEs18(yvy96, yvy97, app(ty_[], dec)) -> new_ltEs11(yvy96, yvy97, dec) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) 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_ltEs5(Left(yvy890), Left(yvy900), ty_@0, ccg) -> new_ltEs4(yvy890, yvy900) new_primPlusInt(EmptyFM, yvy50, yvy51, Branch(yvy540, yvy541, Neg(yvy5420), yvy543, yvy544), h, ba) -> new_primMinusNat1(yvy5420) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fbd, fbe, fbf) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fbd), new_asAs(new_esEs39(yvy152, yvy155, fbd), new_pePe(new_lt23(yvy153, yvy156, fbe), new_asAs(new_esEs38(yvy153, yvy156, fbe), new_ltEs23(yvy154, yvy157, fbf)))), fbd, fbe, fbf) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, dac), dad), ccg) -> new_ltEs5(yvy890, yvy900, dac, dad) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, bcc)) -> new_esEs23(yvy890, yvy900, bcc) new_lt22(yvy152, yvy155, app(ty_Maybe, bb)) -> new_lt4(yvy152, yvy155, bb) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs11(yvy89, yvy90, cce) -> new_fsEs(new_compare0(yvy89, yvy90, cce)) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_splitLT5(Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy42, yvy43, eh, fa) -> new_splitLT30(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), eh, fa) new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), dcd) -> new_asAs(new_esEs30(yvy40000, yvy30000, dcd), new_esEs29(yvy40001, yvy30001, dcd)) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) 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_esEs7(yvy4000, yvy3000, app(app(ty_@2, cba), cbb)) -> new_esEs19(yvy4000, yvy3000, cba, cbb) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), dd, app(ty_Maybe, ee)) -> new_esEs23(yvy40000, yvy30000, ee) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primPlusInt(EmptyFM, yvy50, yvy51, Branch(yvy540, yvy541, Pos(yvy5420), yvy543, yvy544), h, ba) -> Pos(new_primPlusNat0(Zero, yvy5420)) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, egb), egc)) -> new_esEs22(yvy40000, yvy30000, egb, egc) new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, hd), he), hf)) -> new_ltEs12(yvy892, yvy902, hd, he, hf) new_splitLT21(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, eh, fa) -> new_splitLT12(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_compare0(:(yvy42, yvy43), :(yvy36, yvy37), eh), eh, fa) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) 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_lt23(yvy153, yvy156, app(ty_[], fde)) -> new_lt6(yvy153, yvy156, fde) 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_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gg, gh, ha) -> new_pePe(new_lt12(yvy890, yvy900, gg), new_asAs(new_esEs33(yvy890, yvy900, gg), new_pePe(new_lt11(yvy891, yvy901, gh), new_asAs(new_esEs32(yvy891, yvy901, gh), new_ltEs19(yvy892, yvy902, ha))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_compare13(yvy233, yvy234, yvy235, yvy236, False, chc, chd) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, dgb)) -> new_ltEs13(yvy891, yvy901, dgb) new_ltEs5(Right(yvy890), Right(yvy900), ccf, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], cga)) -> new_esEs17(yvy40000, yvy30000, cga) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, cha)) -> new_esEs23(yvy40000, yvy30000, cha) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), ccf, app(ty_[], dah)) -> new_ltEs11(yvy890, yvy900, dah) new_ltEs5(Right(yvy890), Right(yvy900), ccf, app(ty_Ratio, dag)) -> new_ltEs9(yvy890, yvy900, dag) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, efc)) -> new_esEs26(yvy40000, yvy30000, efc) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) 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_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_esEs17([], [], dce) -> True new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs32(yvy891, yvy901, app(app(ty_Either, bbb), bbc)) -> new_esEs22(yvy891, yvy901, bbb, bbc) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_addToFM0(yvy51, yvy41, ba) -> yvy41 new_splitLT30(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, [], h, ba) -> new_splitLT4(yvy33, h, ba) new_mkBalBranch6Size_l(yvy50, yvy51, yvy118, yvy54, h, ba) -> new_sizeFM0(yvy118, h, ba) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs14(EQ, GT) -> True new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy118, yvy540, yvy541, yvy542, EmptyFM, yvy544, False, h, ba) -> error([]) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ge, gf) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, ge), new_esEs10(yvy4001, yvy3001, gf)), ge, gf) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fcb)) -> new_ltEs9(yvy154, yvy157, fcb) new_lt23(yvy153, yvy156, app(ty_Ratio, fdd)) -> new_lt10(yvy153, yvy156, fdd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, eec), eed), eee)) -> new_esEs13(yvy40000, yvy30000, eec, eed, eee) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs27(@0, @0) -> True 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_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(app(ty_@2, ehh), faa)) -> new_ltEs17(yvy166, yvy168, ehh, faa) new_mkBalBranch6Size_r(yvy50, yvy51, yvy118, yvy54, h, ba) -> new_sizeFM0(yvy54, h, ba) new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, ecc)) -> new_esEs23(yvy4001, yvy3001, ecc) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs13(yvy40000, yvy30000, cgb, cgc, cgd) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs13(yvy152, yvy155, fbg, fbh, fca) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, efe), eff), efg)) -> new_esEs13(yvy40000, yvy30000, efe, eff, efg) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, deg)) -> new_ltEs13(yvy96, yvy97, deg) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, edd), ede)) -> new_esEs19(yvy40001, yvy30001, edd, ede) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) 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_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, bcc)) -> new_lt4(yvy890, yvy900, bcc) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, beg), beh)) -> new_esEs19(yvy4001, yvy3001, beg, beh) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_esEs13(yvy40002, yvy30002, cdf, cdg, cdh) 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_primPlusInt2(Neg(yvy3650), yvy363, yvy361, yvy364, ccb, ccc) -> new_primPlusInt1(yvy3650, new_sizeFM1(yvy364, ccb, ccc)) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, cbe)) -> new_esEs23(yvy4000, yvy3000, cbe) new_esEs33(yvy890, yvy900, app(app(ty_@2, bcf), bcg)) -> new_esEs19(yvy890, yvy900, bcf, bcg) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_primPlusInt0(yvy11820, Pos(yvy5420)) -> Pos(new_primPlusNat0(yvy11820, yvy5420)) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fgd), fge)) -> new_esEs19(yvy4000, yvy3000, fgd, fge) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cch), cda)) -> new_ltEs17(yvy89, yvy90, cch, cda) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, chb)) -> new_esEs26(yvy40000, yvy30000, chb) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, egf, egg) -> EQ new_splitGT30([], yvy31, yvy32, yvy33, yvy34, [], h, ba) -> new_splitGT13(yvy31, yvy32, yvy33, yvy34, new_compare0([], [], h), h, ba) new_gt(yvy311, yvy310) -> new_esEs12(new_compare6(yvy311, yvy310), GT) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primMinusNat1(Zero) -> Pos(Zero) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_esEs5(yvy4001, yvy3001, app(ty_[], ebc)) -> new_esEs17(yvy4001, yvy3001, ebc) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, ege)) -> new_esEs26(yvy40000, yvy30000, ege) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, dd), ca)) -> new_esEs22(yvy4000, yvy3000, dd, ca) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy1180, yvy1181, yvy1182, yvy1183, EmptyFM, yvy54, False, h, ba) -> error([]) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs22(Right(yvy40000), Right(yvy30000), dd, app(app(app(ty_@3, df), dg), dh)) -> new_esEs13(yvy40000, yvy30000, df, dg, dh) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_addToFM_C17(yvy51, yvy52, yvy53, yvy54, yvy41, h, ba) -> Branch([], new_addToFM0(yvy51, yvy41, ba), yvy52, yvy53, yvy54) new_esEs22(Right(yvy40000), Right(yvy30000), dd, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_splitGT12(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, EQ, h, ba) -> new_splitGT14(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, h, ba) new_esEs37(yvy165, yvy167, app(ty_Ratio, fab)) -> new_esEs26(yvy165, yvy167, fab) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, ddf)) -> new_esEs23(yvy40000, yvy30000, ddf) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, eba)) -> new_esEs23(yvy4002, yvy3002, eba) new_splitLT14(yvy31, yvy32, yvy33, yvy34, h, ba) -> yvy33 new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) 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_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs13(yvy890, yvy900, bbh, bca, bcb) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, ccg) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), dd, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_compare30(Left(yvy4000), Right(yvy3000), gc, gd) -> LT new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_splitGT4(EmptyFM, yvy400, yvy401, h, ba) -> new_emptyFM(h, ba) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, edf), edg)) -> new_esEs22(yvy40001, yvy30001, edf, edg) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, cfg)) -> new_esEs23(yvy40001, yvy30001, cfg) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_primPlusInt(Branch(yvy1180, yvy1181, Neg(yvy11820), yvy1183, yvy1184), yvy50, yvy51, EmptyFM, h, ba) -> new_primMinusNat1(yvy11820) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, ddd), dde)) -> new_esEs22(yvy40000, yvy30000, ddd, dde) new_esEs12(GT, GT) -> True new_ltEs22(yvy166, yvy168, app(ty_[], eha)) -> new_ltEs11(yvy166, yvy168, eha) new_esEs32(yvy891, yvy901, app(app(ty_@2, bbd), bbe)) -> new_esEs19(yvy891, yvy901, bbd, bbe) new_compare0([], :(yvy3000, yvy3001), ff) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, eag), eah)) -> new_esEs22(yvy4002, yvy3002, eag, eah) new_ltEs5(Right(yvy890), Left(yvy900), ccf, ccg) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_splitLT12(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, LT, eh, fa) -> new_splitLT17(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, eh, fa) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, ca) -> new_esEs18(yvy40000, yvy30000) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_lt12(yvy890, yvy900, app(ty_Ratio, bbf)) -> new_lt10(yvy890, yvy900, bbf) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_compare24(yvy96, yvy97, True, ddh, dea) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, cec), ced)) -> new_esEs22(yvy40002, yvy30002, cec, ced) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, ccg) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fdf), fdg), fdh)) -> new_lt16(yvy153, yvy156, fdf, fdg, fdh) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffh)) -> new_esEs17(yvy4000, yvy3000, ffh) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primMinusNat1(Succ(yvy54200)) -> Neg(Succ(yvy54200)) 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_esEs8(yvy4000, yvy3000, app(ty_[], fef)) -> new_esEs17(yvy4000, yvy3000, fef) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, dae), daf), ccg) -> new_ltEs17(yvy890, yvy900, dae, daf) new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) 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_ltEs13(Nothing, Nothing, bch) -> True new_ltEs13(Just(yvy890), Nothing, bch) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, cfe), cff)) -> new_esEs22(yvy40001, yvy30001, cfe, cff) new_splitGT21(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, GT, fb, fc) -> new_splitGT4(yvy22, yvy23, yvy24, fb, fc) new_splitLT15(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, LT, h, ba) -> new_splitLT16(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, h, ba) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_splitLT13(yvy31, yvy32, yvy33, yvy34, LT, h, ba) -> new_splitLT14(yvy31, yvy32, yvy33, yvy34, h, ba) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs5(Right(yvy890), Right(yvy900), ccf, app(app(ty_@2, dbg), dbh)) -> new_ltEs17(yvy890, yvy900, dbg, dbh) new_lt21(yvy165, yvy167, app(ty_Maybe, fag)) -> new_lt4(yvy165, yvy167, fag) 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_splitGT4(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, yvy401, h, ba) -> new_splitGT30(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, bge)) -> new_esEs23(yvy4000, yvy3000, bge) new_esEs39(yvy152, yvy155, app(app(ty_Either, cac), cad)) -> new_esEs22(yvy152, yvy155, cac, cad) new_ltEs6(False, True) -> True new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_lt11(yvy891, yvy901, app(ty_Ratio, bad)) -> new_lt10(yvy891, yvy901, bad) 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_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, bfc)) -> new_esEs23(yvy4001, yvy3001, bfc) 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_ltEs23(yvy154, yvy157, app(ty_[], fcc)) -> new_ltEs11(yvy154, yvy157, fcc) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, gb) -> GT new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) 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_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), fg, fh, ga) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, fg), new_asAs(new_esEs5(yvy4001, yvy3001, fh), new_esEs4(yvy4002, yvy3002, ga))), fg, fh, ga) 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_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs10(yvy4001, yvy3001, app(app(ty_Either, bfa), bfb)) -> new_esEs22(yvy4001, yvy3001, bfa, bfb) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) 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_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy118, yvy54, False, h, ba) -> new_mkBranch(Succ(Zero), yvy50, yvy51, yvy118, yvy54, app(ty_[], h), ba) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs13(yvy890, yvy900, dha, dhb, dhc) new_sizeFM0(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 new_sizeFM1(EmptyFM, ccb, ccc) -> Pos(Zero) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, ca) -> new_esEs27(yvy40000, yvy30000) 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_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dhe), dhf)) -> new_esEs22(yvy890, yvy900, dhe, dhf) 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_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) 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_lt6(yvy152, yvy155, eg) -> new_esEs12(new_compare0(yvy152, yvy155, eg), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs13(yvy4000, yvy3000, bff, bfg, bfh) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, bgc), bgd)) -> new_esEs22(yvy4000, yvy3000, bgc, bgd) new_primPlusInt(EmptyFM, yvy50, yvy51, EmptyFM, h, ba) -> Pos(new_primPlusNat0(Zero, Zero)) new_splitGT17(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, GT, fb, fc) -> new_splitGT16(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, fb, fc) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt16(yvy890, yvy900, dha, dhb, dhc) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) 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_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), dd, ca) -> False new_esEs22(Right(yvy40000), Left(yvy30000), dd, ca) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, che), ccg) -> new_ltEs9(yvy890, yvy900, che) new_compare0(:(yvy4000, yvy4001), [], ff) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, ccg) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dhe), dhf)) -> new_lt19(yvy890, yvy900, dhe, dhf) 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_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, cee)) -> new_esEs23(yvy40002, yvy30002, cee) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) 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_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) 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_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, fag)) -> new_esEs23(yvy165, yvy167, fag) new_splitGT21(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, EQ, fb, fc) -> new_splitGT22(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, fb, fc) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, bgf)) -> new_esEs26(yvy4000, yvy3000, bgf) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, dc), ca) -> new_esEs26(yvy40000, yvy30000, dc) new_splitLT5(EmptyFM, yvy42, yvy43, eh, fa) -> new_emptyFM(eh, fa) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, bda)) -> new_ltEs9(yvy890, yvy900, bda) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ff) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, ff), ff) new_esEs34(yvy890, yvy900, app(ty_Ratio, dgg)) -> new_esEs26(yvy890, yvy900, dgg) new_lt12(yvy890, yvy900, app(app(ty_@2, bcf), bcg)) -> new_lt5(yvy890, yvy900, bcf, bcg) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_splitGT14(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, h, ba) -> yvy34 new_compare7(Nothing, Just(yvy3000), gb) -> LT 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_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_mkVBalBranch3Size_r2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs32(yvy891, yvy901, app(ty_Ratio, bad)) -> new_esEs26(yvy891, yvy901, bad) new_esEs33(yvy890, yvy900, app(ty_Ratio, bbf)) -> new_esEs26(yvy890, yvy900, bbf) new_lt20(yvy890, yvy900, app(ty_Maybe, dhd)) -> new_lt4(yvy890, yvy900, dhd) new_compare24(yvy96, yvy97, False, ddh, dea) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, ddh), ddh, dea) new_splitLT4(EmptyFM, h, ba) -> new_emptyFM(h, ba) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, ce), cf), ca) -> new_esEs19(yvy40000, yvy30000, ce, cf) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, edh)) -> new_esEs23(yvy40001, yvy30001, edh) new_lt23(yvy153, yvy156, app(app(ty_Either, feb), fec)) -> new_lt19(yvy153, yvy156, feb, fec) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), dd, app(app(ty_@2, ea), eb)) -> new_esEs19(yvy40000, yvy30000, ea, eb) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) 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_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) 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_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_splitGT5(EmptyFM, h, ba) -> new_emptyFM(h, ba) new_esEs32(yvy891, yvy901, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs13(yvy891, yvy901, baf, bag, bah) new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, ccg) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, dca, dcb) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eeh), efa)) -> new_esEs22(yvy40000, yvy30000, eeh, efa) new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) 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_lt22(yvy152, yvy155, app(app(ty_Either, cac), cad)) -> new_lt19(yvy152, yvy155, cac, cad) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, bfd)) -> new_esEs26(yvy4001, yvy3001, bfd) new_ltEs21(yvy103, yvy104, app(ty_[], bhb)) -> new_ltEs11(yvy103, yvy104, bhb) new_ltEs13(Nothing, Just(yvy900), bch) -> True new_sizeFM1(Branch(yvy3630, yvy3631, yvy3632, yvy3633, yvy3634), ccb, ccc) -> yvy3632 new_sizeFM0(EmptyFM, h, ba) -> Pos(Zero) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, efb)) -> new_esEs23(yvy40000, yvy30000, efb) new_primPlusInt1(yvy11820, Pos(yvy5420)) -> new_primMinusNat0(yvy5420, yvy11820) new_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, chg), chh), daa), ccg) -> new_ltEs12(yvy890, yvy900, chg, chh, daa) 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_lt11(yvy891, yvy901, app(app(ty_@2, bbd), bbe)) -> new_lt5(yvy891, yvy901, bbd, bbe) new_splitGT15(yvy31, yvy32, yvy33, yvy34, h, ba) -> yvy34 new_splitGT22(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, fb, fc) -> new_splitGT17(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_compare0(:(yvy23, yvy24), :(yvy17, yvy18), fb), fb, fc) new_lt11(yvy891, yvy901, app(app(ty_Either, bbb), bbc)) -> new_lt19(yvy891, yvy901, bbb, bbc) new_ltEs5(Right(yvy890), Right(yvy900), ccf, ty_Char) -> new_ltEs15(yvy890, yvy900) new_primPlusInt(Branch(yvy1180, yvy1181, Pos(yvy11820), yvy1183, yvy1184), yvy50, yvy51, EmptyFM, h, ba) -> Pos(new_primPlusNat0(yvy11820, Zero)) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_esEs19(yvy152, yvy155, bf, bg) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, bdf)) -> new_ltEs13(yvy890, yvy900, bdf) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, dab), ccg) -> new_ltEs13(yvy890, yvy900, dab) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], efd)) -> new_esEs17(yvy40000, yvy30000, efd) new_compare14(yvy196, yvy197, True, dca, dcb) -> LT new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_splitLT17(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, eh, fa) -> yvy40 new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], bh), ca) -> new_esEs17(yvy40000, yvy30000, bh) new_compare25(yvy400, yvy300, app(ty_Ratio, fd)) -> new_compare26(yvy400, yvy300, fd) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_splitLT12(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, eh, fa) -> new_mkVBalBranch0(:(yvy36, yvy37), yvy38, yvy40, new_splitLT5(yvy41, yvy42, yvy43, eh, fa), eh, fa) 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_lt22(yvy152, yvy155, app(ty_[], eg)) -> new_lt6(yvy152, yvy155, eg) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, db), ca) -> new_esEs23(yvy40000, yvy30000, db) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) 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_compare19(True, True) -> EQ new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs13(yvy4001, yvy3001, bed, bee, bef) new_lt21(yvy165, yvy167, app(app(ty_Either, fah), fba)) -> new_lt19(yvy165, yvy167, fah, fba) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_splitLT16(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, h, ba) -> yvy33 new_esEs6(yvy4000, yvy3000, app(ty_[], dce)) -> new_esEs17(yvy4000, yvy3000, dce) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_mkVBalBranch0(yvy40, yvy41, EmptyFM, yvy5, h, ba) -> new_addToFM(yvy5, yvy40, yvy41, h, ba) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_ltEs19(yvy892, yvy902, app(ty_[], hc)) -> new_ltEs11(yvy892, yvy902, hc) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, ca) -> new_esEs28(yvy40000, yvy30000) new_lt21(yvy165, yvy167, app(app(ty_@2, fbb), fbc)) -> new_lt5(yvy165, yvy167, fbb, fbc) new_splitGT13(yvy31, yvy32, yvy33, yvy34, GT, h, ba) -> new_splitGT15(yvy31, yvy32, yvy33, yvy34, h, ba) new_lt23(yvy153, yvy156, app(ty_Maybe, fea)) -> new_lt4(yvy153, yvy156, fea) 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_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, eab), eac), ead)) -> new_esEs13(yvy4002, yvy3002, eab, eac, ead) new_esEs23(Nothing, Just(yvy30000), ecg) -> False new_esEs23(Just(yvy40000), Nothing, ecg) -> False new_esEs22(Right(yvy40000), Right(yvy30000), dd, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, ca) -> new_esEs24(yvy40000, yvy30000) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), dd, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cch, cda) -> new_pePe(new_lt20(yvy890, yvy900, cch), new_asAs(new_esEs34(yvy890, yvy900, cch), new_ltEs20(yvy891, yvy901, cda))) new_splitGT13(yvy31, yvy32, yvy33, yvy34, EQ, h, ba) -> new_splitGT15(yvy31, yvy32, yvy33, yvy34, h, ba) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs38(yvy153, yvy156, app(app(ty_Either, feb), fec)) -> new_esEs22(yvy153, yvy156, feb, fec) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_compare16(yvy189, yvy190, True, dcc) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ 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_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, ccg) -> new_ltEs6(yvy890, yvy900) 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_lt9(new_sizeFM0(yvy1184, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(yvy1183, h, ba))), h, ba) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, ffb), ffc)) -> new_esEs19(yvy4000, yvy3000, ffb, ffc) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs23(Nothing, Nothing, ecg) -> True 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_lt12(yvy890, yvy900, app(ty_[], bbg)) -> new_lt6(yvy890, yvy900, bbg) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, dhd)) -> new_esEs23(yvy890, yvy900, dhd) 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_splitLT22(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, LT, eh, fa) -> new_splitLT5(yvy40, yvy42, yvy43, eh, fa) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, app(ty_[], cce)) -> new_ltEs11(yvy89, yvy90, cce) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, cgg), cgh)) -> new_esEs22(yvy40000, yvy30000, cgg, cgh) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_primMinusNat0(Succ(yvy118200), Zero) -> Pos(Succ(yvy118200)) 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_lt9(new_sizeFM0(yvy543, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(yvy544, h, ba))), h, ba) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, gb)) -> new_compare7(yvy400, yvy300, gb) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, eea)) -> new_esEs26(yvy40001, yvy30001, eea) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(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_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, chc, chd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, chc, chd) new_compare30(Right(yvy4000), Right(yvy3000), gc, gd) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, gd), gc, gd) 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_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fbg), fbh), fca)) -> new_lt16(yvy152, yvy155, fbg, fbh, fca) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_compare110(yvy205, yvy206, True, cbg, cbh) -> LT new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, dfg), dfh), dga)) -> new_ltEs12(yvy891, yvy901, dfg, dfh, dga) new_esEs37(yvy165, yvy167, app(ty_[], fac)) -> new_esEs17(yvy165, yvy167, fac) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, cea), ceb)) -> new_esEs19(yvy40002, yvy30002, cea, ceb) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_splitGT30([], yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), h, ba) -> new_splitGT4(yvy34, yvy400, yvy401, h, ba) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, egd)) -> new_esEs23(yvy40000, yvy30000, egd) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, ddb), ddc)) -> new_esEs19(yvy40000, yvy30000, ddb, ddc) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, app(app(ty_Either, bcd), bce)) -> new_esEs22(yvy890, yvy900, bcd, bce) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, eda), edb), edc)) -> new_esEs13(yvy40001, yvy30001, eda, edb, edc) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cdb, cdc, cdd) -> new_asAs(new_esEs16(yvy40000, yvy30000, cdb), new_asAs(new_esEs15(yvy40001, yvy30001, cdc), new_esEs14(yvy40002, yvy30002, cdd))) new_primPlusInt1(yvy11820, Neg(yvy5420)) -> Neg(new_primPlusNat0(yvy11820, yvy5420)) new_pePe(False, yvy305) -> yvy305 new_esEs7(yvy4000, yvy3000, app(app(ty_Either, cbc), cbd)) -> new_esEs22(yvy4000, yvy3000, cbc, cbd) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], bdb)) -> new_ltEs11(yvy890, yvy900, bdb) new_esEs39(yvy152, yvy155, app(ty_[], eg)) -> new_esEs17(yvy152, yvy155, eg) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) 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_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) 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_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_primMinusNat0(Succ(yvy118200), Succ(yvy54200)) -> new_primMinusNat0(yvy118200, yvy54200) new_lt12(yvy890, yvy900, app(app(app(ty_@3, bbh), bca), bcb)) -> new_lt16(yvy890, yvy900, bbh, bca, bcb) new_esEs39(yvy152, yvy155, app(ty_Maybe, bb)) -> new_esEs23(yvy152, yvy155, bb) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eca), ecb)) -> new_esEs22(yvy4001, yvy3001, eca, ecb) new_esEs22(Right(yvy40000), Right(yvy30000), dd, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, cg), da), ca) -> new_esEs22(yvy40000, yvy30000, cg, da) new_splitGT17(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, EQ, fb, fc) -> new_splitGT16(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, fb, fc) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, ded), dee), def)) -> new_ltEs12(yvy96, yvy97, ded, dee, def) new_splitGT17(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, fb, fc) -> new_mkVBalBranch0(:(yvy17, yvy18), yvy19, new_splitGT4(yvy21, yvy23, yvy24, fb, fc), yvy22, fb, fc) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, bdg), bdh)) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_primPlusInt(Branch(yvy1180, yvy1181, Neg(yvy11820), yvy1183, yvy1184), yvy50, yvy51, Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> new_primPlusInt1(yvy11820, yvy542) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, ccg) -> new_ltEs7(yvy890, yvy900) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, ebb)) -> new_esEs26(yvy4002, yvy3002, ebb) new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs32(yvy891, yvy901, app(ty_Maybe, bba)) -> new_esEs23(yvy891, yvy901, bba) new_compare212(yvy89, yvy90, True, ccd) -> EQ new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(app(ty_@3, fg), fh), ga)) -> new_compare27(yvy400, yvy300, fg, fh, ga) 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_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, bga), bgb)) -> new_esEs19(yvy4000, yvy3000, bga, bgb) 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_primPlusNat1(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_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fdb), fdc)) -> new_ltEs17(yvy154, yvy157, fdb, fdc) 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_esEs38(yvy153, yvy156, app(app(app(ty_@3, fdf), fdg), fdh)) -> new_esEs13(yvy153, yvy156, fdf, fdg, fdh) new_lt5(yvy152, yvy155, bf, bg) -> new_esEs12(new_compare8(yvy152, yvy155, bf, bg), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs13(yvy40001, yvy30001, ceh, cfa, cfb) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy118, yvy54, GT, h, ba) -> new_mkBalBranch6MkBalBranch50(yvy50, yvy51, yvy118, yvy54, h, ba) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, fad), fae), faf)) -> new_esEs13(yvy165, yvy167, fad, fae, faf) new_addToFM_C16(yvy51, yvy52, yvy53, yvy54, yvy41, LT, h, ba) -> new_addToFM_C17(yvy51, yvy52, yvy53, yvy54, yvy41, h, ba) new_esEs22(Right(yvy40000), Right(yvy30000), dd, app(ty_Ratio, ef)) -> new_esEs26(yvy40000, yvy30000, ef) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, ca) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), dd, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), dce) -> new_asAs(new_esEs31(yvy40000, yvy30000, dce), new_esEs17(yvy40001, yvy30001, dce)) new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy118, yvy54, LT, h, ba) -> new_mkBranch(Zero, yvy50, yvy51, yvy118, yvy54, app(ty_[], h), ba) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, ca) -> new_esEs21(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ecg)) -> new_esEs23(yvy4000, yvy3000, ecg) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs9(yvy89, yvy90, cca) -> new_fsEs(new_compare26(yvy89, yvy90, cca)) new_compare211(yvy103, yvy104, False, bgg, bgh) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, bgh), bgg, bgh) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_compare25(yvy400, yvy300, app(app(ty_@2, ge), gf)) -> new_compare8(yvy400, yvy300, ge, gf) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, cfh)) -> new_esEs26(yvy40001, yvy30001, cfh) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fdd)) -> new_esEs26(yvy153, yvy156, fdd) new_addToFM_C16(yvy51, yvy52, yvy53, yvy54, yvy41, EQ, h, ba) -> new_addToFM_C17(yvy51, yvy52, yvy53, yvy54, yvy41, h, ba) new_ltEs24(yvy89, yvy90, app(ty_Ratio, cca)) -> new_ltEs9(yvy89, yvy90, cca) new_esEs34(yvy890, yvy900, app(app(ty_@2, dhg), dhh)) -> new_esEs19(yvy890, yvy900, dhg, dhh) new_compare25(yvy400, yvy300, app(app(ty_Either, gc), gd)) -> new_compare30(yvy400, yvy300, gc, gd) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs14(GT, LT) -> False new_splitGT12(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, GT, h, ba) -> new_splitGT14(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, h, ba) new_ltEs19(yvy892, yvy902, app(app(ty_Either, hh), baa)) -> new_ltEs5(yvy892, yvy902, hh, baa) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, ca) -> new_esEs12(yvy40000, yvy30000) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), dd, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), dd, app(app(ty_Either, ec), ed)) -> new_esEs22(yvy40000, yvy30000, ec, ed) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], eaa)) -> new_esEs17(yvy4002, yvy3002, eaa) new_compare210(yvy165, yvy166, yvy167, yvy168, False, egf, egg) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, egf), new_asAs(new_esEs37(yvy165, yvy167, egf), new_ltEs22(yvy166, yvy168, egg)), egf, egg) 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_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], dcf)) -> new_esEs17(yvy40000, yvy30000, dcf) new_ltEs21(yvy103, yvy104, app(ty_Maybe, bhf)) -> new_ltEs13(yvy103, yvy104, bhf) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, cge), cgf)) -> new_esEs19(yvy40000, yvy30000, cge, cgf) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_esEs15(yvy40001, yvy30001, app(ty_[], ceg)) -> new_esEs17(yvy40001, yvy30001, ceg) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, egh)) -> new_ltEs9(yvy166, yvy168, egh) new_lt10(yvy152, yvy155, dfd) -> new_esEs12(new_compare26(yvy152, yvy155, dfd), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_esEs8(yvy4000, yvy3000, app(app(ty_Either, ffd), ffe)) -> new_esEs22(yvy4000, yvy3000, ffd, ffe) new_splitGT5(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), h, ba) -> new_splitGT30(yvy330, yvy331, yvy332, yvy333, yvy334, [], h, ba) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs13(yvy4000, yvy3000, cdb, cdc, cdd) 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_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) 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_asAs(True, yvy184) -> yvy184 new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ebg), ebh)) -> new_esEs19(yvy4001, yvy3001, ebg, ebh) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], ff)) -> new_compare0(yvy400, yvy300, ff) new_esEs10(yvy4001, yvy3001, app(ty_[], bec)) -> new_esEs17(yvy4001, yvy3001, bec) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_primPlusInt2(Pos(yvy3650), yvy363, yvy361, yvy364, ccb, ccc) -> new_primPlusInt0(yvy3650, new_sizeFM1(yvy364, ccb, ccc)) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, app(app(ty_Either, dgc), dgd)) -> new_ltEs5(yvy891, yvy901, dgc, dgd) new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_splitLT13(yvy31, yvy32, yvy33, yvy34, EQ, h, ba) -> new_splitLT14(yvy31, yvy32, yvy33, yvy34, h, ba) new_ltEs5(Right(yvy890), Right(yvy900), ccf, app(app(ty_Either, dbe), dbf)) -> new_ltEs5(yvy890, yvy900, dbe, dbf) new_ltEs5(Right(yvy890), Right(yvy900), ccf, ty_@0) -> new_ltEs4(yvy890, yvy900) new_compare0([], [], ff) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], eeb)) -> new_esEs17(yvy40000, yvy30000, eeb) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_mkBranch(yvy360, yvy361, yvy362, yvy363, yvy364, ccb, ccc) -> Branch(yvy361, yvy362, new_primPlusInt2(new_primPlusInt0(Succ(Zero), new_sizeFM1(yvy363, ccb, ccc)), yvy363, yvy361, yvy364, ccb, ccc), yvy363, yvy364) new_compare30(Right(yvy4000), Left(yvy3000), gc, gd) -> GT new_primMulNat0(Zero, Zero) -> Zero new_esEs6(yvy4000, yvy3000, app(ty_Ratio, dcd)) -> new_esEs26(yvy4000, yvy3000, dcd) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_esEs8(yvy4000, yvy3000, app(ty_Maybe, fff)) -> new_esEs23(yvy4000, yvy3000, fff) 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_compare9(@0, @0) -> EQ 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_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, eef), eeg)) -> new_esEs19(yvy40000, yvy30000, eef, eeg) new_ltEs19(yvy892, yvy902, app(ty_Maybe, hg)) -> new_ltEs13(yvy892, yvy902, hg) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, ccd) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, ccd), ccd) new_splitLT12(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, eh, fa) -> new_splitLT17(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, eh, fa) 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_esEs6(yvy4000, yvy3000, app(app(ty_@2, ece), ecf)) -> new_esEs19(yvy4000, yvy3000, ece, ecf) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ecd)) -> new_esEs26(yvy4001, yvy3001, ecd) new_lt11(yvy891, yvy901, app(ty_Maybe, bba)) -> new_lt4(yvy891, yvy901, bba) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(app(ty_@2, fbb), fbc)) -> new_esEs19(yvy165, yvy167, fbb, fbc) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgf), fgg)) -> new_esEs22(yvy4000, yvy3000, fgf, fgg) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], cde)) -> new_esEs17(yvy40002, yvy30002, cde) new_compare28(EQ, EQ) -> EQ new_ltEs24(yvy89, yvy90, app(app(ty_Either, ccf), ccg)) -> new_ltEs5(yvy89, yvy90, ccf, ccg) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_ltEs21(yvy103, yvy104, app(app(ty_@2, caa), cab)) -> new_ltEs17(yvy103, yvy104, caa, cab) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ebd), ebe), ebf)) -> new_esEs13(yvy4001, yvy3001, ebd, ebe, ebf) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_lt22(yvy152, yvy155, app(ty_Ratio, dfd)) -> new_lt10(yvy152, yvy155, dfd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) 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_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_ltEs18(yvy96, yvy97, app(app(ty_Either, deh), dfa)) -> new_ltEs5(yvy96, yvy97, deh, dfa) new_mkBalBranch(yvy50, yvy51, yvy118, yvy54, h, ba) -> new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy118, yvy54, new_compare6(new_primPlusInt(yvy118, yvy50, yvy51, yvy54, h, ba), Pos(Succ(Succ(Zero)))), h, ba) 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_esEs32(yvy891, yvy901, app(ty_[], bae)) -> new_esEs17(yvy891, yvy901, bae) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgh)) -> new_esEs23(yvy4000, yvy3000, fgh) new_ltEs5(Right(yvy890), Right(yvy900), ccf, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_splitGT21(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, fb, fc) -> new_splitGT22(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, fb, fc) new_compare211(yvy103, yvy104, True, bgg, bgh) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), ccf, app(app(app(ty_@3, dba), dbb), dbc)) -> new_ltEs12(yvy890, yvy900, dba, dbb, dbc) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], chf), ccg) -> new_ltEs11(yvy890, yvy900, chf) new_lt4(yvy152, yvy155, bb) -> new_esEs12(new_compare7(yvy152, yvy155, bb), LT) 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_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, caf), cag), cah)) -> new_esEs13(yvy4000, yvy3000, caf, cag, cah) new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_compare19(False, True) -> LT new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efh), ega)) -> new_esEs19(yvy40000, yvy30000, efh, ega) new_compare7(Nothing, Nothing, gb) -> EQ new_ltEs21(yvy103, yvy104, app(ty_Ratio, bha)) -> new_ltEs9(yvy103, yvy104, bha) new_ltEs5(Right(yvy890), Right(yvy900), ccf, ty_Int) -> new_ltEs7(yvy890, yvy900) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, bc, bd, be) 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_compare13(yvy233, yvy234, yvy235, yvy236, True, chc, chd) -> LT new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_not(False) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, ccg) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fha)) -> new_esEs26(yvy4000, yvy3000, fha) 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_ltEs20(yvy891, yvy901, app(app(ty_@2, dge), dgf)) -> new_ltEs17(yvy891, yvy901, dge, dgf) new_addToFM_C12(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> Branch(:(yvy400, yvy401), new_addToFM0(yvy51, yvy41, ba), yvy52, yvy53, yvy54) new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_lt20(yvy890, yvy900, app(app(ty_@2, dhg), dhh)) -> new_lt5(yvy890, yvy900, dhg, dhh) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) 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_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_@2, bab), bac)) -> new_ltEs17(yvy892, yvy902, bab, bac) new_compare30(Left(yvy4000), Left(yvy3000), gc, gd) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, gc), gc, gd) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], fac)) -> new_lt6(yvy165, yvy167, fac) new_compare28(GT, GT) -> EQ new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, fga), fgb), fgc)) -> new_esEs13(yvy4000, yvy3000, fga, fgb, fgc) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) 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_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fed), fee)) -> new_esEs19(yvy153, yvy156, fed, fee) new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs12(yvy89, yvy90, gg, gh, ha) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, cbf)) -> new_esEs26(yvy4000, yvy3000, cbf) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_lt21(yvy165, yvy167, app(ty_Ratio, fab)) -> new_lt10(yvy165, yvy167, fab) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_ltEs12(yvy103, yvy104, bhc, bhd, bhe) new_lt12(yvy890, yvy900, app(app(ty_Either, bcd), bce)) -> new_lt19(yvy890, yvy900, bcd, bce) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, ehe)) -> new_ltEs13(yvy166, yvy168, ehe) new_compare7(Just(yvy4000), Just(yvy3000), gb) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, gb), gb) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, cfc), cfd)) -> new_esEs19(yvy40001, yvy30001, cfc, cfd) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], ech)) -> new_esEs17(yvy40001, yvy30001, ech) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, cb), cc), cd), ca) -> new_esEs13(yvy40000, yvy30000, cb, cc, cd) new_primPlusInt(Branch(yvy1180, yvy1181, Pos(yvy11820), yvy1183, yvy1184), yvy50, yvy51, Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> new_primPlusInt0(yvy11820, yvy542) new_ltEs18(yvy96, yvy97, app(ty_Ratio, deb)) -> new_ltEs9(yvy96, yvy97, deb) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fbd, fbe, fbf) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fcd), fce), fcf)) -> new_ltEs12(yvy154, yvy157, fcd, fce, fcf) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs21(yvy103, yvy104, app(app(ty_Either, bhg), bhh)) -> new_ltEs5(yvy103, yvy104, bhg, bhh) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, chc, chd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, chc, chd) new_compare28(GT, LT) -> GT new_compare16(yvy189, yvy190, False, dcc) -> GT new_ltEs22(yvy166, yvy168, app(app(ty_Either, ehf), ehg)) -> new_ltEs5(yvy166, yvy168, ehf, ehg) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_ltEs12(yvy166, yvy168, ehb, ehc, ehd) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs22(Right(yvy40000), Right(yvy30000), dd, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fed), fee)) -> new_lt5(yvy153, yvy156, fed, fee) new_ltEs19(yvy892, yvy902, app(ty_Ratio, hb)) -> new_ltEs9(yvy892, yvy902, hb) new_ltEs5(Right(yvy890), Right(yvy900), ccf, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_addToFM_C0(EmptyFM, yvy40, yvy41, h, ba) -> Branch(yvy40, yvy41, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) new_ltEs18(yvy96, yvy97, app(app(ty_@2, dfb), dfc)) -> new_ltEs17(yvy96, yvy97, dfb, dfc) new_esEs11(yvy4000, yvy3000, app(ty_[], bfe)) -> new_esEs17(yvy4000, yvy3000, bfe) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, app(ty_Maybe, bch)) -> new_ltEs13(yvy89, yvy90, bch) new_esEs34(yvy890, yvy900, app(ty_[], dgh)) -> new_esEs17(yvy890, yvy900, dgh) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffg)) -> new_esEs26(yvy4000, yvy3000, ffg) new_compare110(yvy205, yvy206, False, cbg, cbh) -> GT new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_compare28(LT, EQ) -> LT 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_splitLT4(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), h, ba) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, [], h, ba) new_lt20(yvy890, yvy900, app(ty_[], dgh)) -> new_lt6(yvy890, yvy900, dgh) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fcg)) -> new_ltEs13(yvy154, yvy157, fcg) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], dce) -> False new_esEs17([], :(yvy30000, yvy30001), dce) -> False new_lt22(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_lt5(yvy152, yvy155, bf, bg) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) 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_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs4(yvy4002, yvy3002, app(app(ty_@2, eae), eaf)) -> new_esEs19(yvy4002, yvy3002, eae, eaf) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, feg), feh), ffa)) -> new_esEs13(yvy4000, yvy3000, feg, feh, ffa) 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_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) 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_primPlusNat1(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_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs18(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Int) new_compare28(EQ, LT) new_compare28(LT, EQ) new_mkVBalBranch3MkVBalBranch29(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, GT, x12, x13) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt20(x0, x1, app(ty_Ratio, x2)) new_addToFM_C17(x0, x1, x2, x3, x4, x5, x6) new_lt11(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_splitGT13(x0, x1, x2, x3, LT, x4, x5) new_mkVBalBranch0(x0, x1, EmptyFM, x2, x3, x4) new_fsEs(x0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Ordering) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_splitLT13(x0, x1, x2, x3, GT, x4, x5) new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, EQ, x7, x8) new_compare16(x0, x1, True, x2) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_primMinusNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_Int) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs11(x0, x1, x2) new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), EmptyFM, x7, x8) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_primPlusInt0(x0, Pos(x1)) new_esEs39(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_lt12(x0, x1, ty_Ordering) 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_esEs33(x0, x1, ty_@0) new_splitGT30([], x0, x1, x2, x3, [], x4, x5) new_primCompAux00(x0, GT) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Integer) new_splitGT17(x0, x1, x2, x3, x4, x5, x6, x7, LT, x8, x9) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt22(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare25(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt8(x0, x1) new_compare211(x0, x1, False, x2, x3) new_primMinusNat1(Zero) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Double) new_mkVBalBranch3MkVBalBranch15(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_ltEs18(x0, x1, ty_@0) new_splitGT16(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9) new_primPlusInt0(x0, Neg(x1)) new_splitGT4(EmptyFM, x0, x1, x2, x3) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt23(x0, x1, ty_@0) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs38(x0, x1, ty_Integer) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_primPlusInt(Branch(x0, x1, Neg(x2), x3, x4), x5, x6, Branch(x7, x8, x9, x10, x11), x12, x13) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) new_compare25(x0, x1, ty_@0) new_splitLT12(x0, x1, x2, x3, x4, x5, x6, x7, LT, x8, x9) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs21(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primMulNat0(Succ(x0), Succ(x1)) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_esEs33(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) new_ltEs9(x0, x1, x2) new_splitLT4(EmptyFM, x0, x1) new_lt24(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_mkVBalBranch0(x0, x1, Branch(x2, x3, Neg(Zero), x4, x5), Branch(x6, x7, x8, x9, x10), x11, x12) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_splitGT13(x0, x1, x2, x3, EQ, x4, x5) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs22(x0, x1, ty_Int) new_splitLT16(x0, x1, x2, x3, x4, x5, x6, x7) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_esEs12(GT, GT) new_splitLT30([], x0, x1, x2, x3, [], x4, x5) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_splitLT12(x0, x1, x2, x3, x4, x5, x6, x7, EQ, x8, x9) new_splitLT4(Branch(x0, x1, x2, x3, x4), x5, x6) new_ltEs19(x0, x1, ty_Float) new_esEs15(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_addToFM_C0(Branch(:(x0, x1), x2, x3, x4, x5), [], x6, x7, x8) new_sizeFM1(Branch(x0, x1, x2, x3, x4), x5, x6) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(ty_[], x2)) new_compare7(Just(x0), Just(x1), x2) new_esEs7(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Float) new_esEs16(x0, x1, ty_Ordering) new_primCompAux0(x0, x1, x2, x3) new_esEs9(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Ordering) new_mkVBalBranch3MkVBalBranch211(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_lt25(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkVBalBranch3MkVBalBranch14(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, False, x11, x12) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_addToFM_C21(x0, x1, x2, x3, x4, x5, x6, x7, x8, GT, x9, x10) new_compare210(x0, x1, x2, x3, True, x4, x5) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_esEs8(x0, x1, ty_Bool) new_compare110(x0, x1, True, x2, x3) new_esEs37(x0, x1, ty_Ordering) new_compare30(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Char) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_mkVBalBranch3MkVBalBranch16(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, True, x11, x12) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, LT, x7, x8) new_compare25(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_compare7(Just(x0), Nothing, x1) new_lt12(x0, x1, ty_Char) new_mkVBalBranch0(x0, x1, Branch(x2, x3, Pos(Succ(x4)), x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_esEs38(x0, x1, ty_Float) new_splitGT30(:(x0, x1), x2, x3, x4, x5, [], x6, x7) new_esEs8(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt15(x0, x1) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_esEs33(x0, x1, ty_Bool) new_ltEs13(Nothing, Just(x0), x1) new_mkBranch(x0, x1, x2, x3, x4, x5, x6) new_esEs37(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_sizeFM0(EmptyFM, x0, x1) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, GT, x4, x5) new_addToFM_C0(Branch([], x0, x1, x2, x3), :(x4, x5), x6, x7, x8) new_esEs35(x0, x1, ty_@0) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) new_esEs14(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_esEs17([], :(x0, x1), x2) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(False, x0) new_esEs4(x0, x1, ty_Char) new_compare7(Nothing, Nothing, x0) new_addToFM_C0(EmptyFM, x0, x1, x2, x3) new_esEs34(x0, x1, ty_Integer) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_splitLT30(:(x0, x1), x2, x3, x4, x5, :(x6, x7), x8, x9) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_splitGT15(x0, x1, x2, x3, x4, x5) new_esEs6(x0, x1, ty_Double) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_splitLT22(x0, x1, x2, x3, x4, x5, x6, x7, GT, x8, x9) new_ltEs19(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Float) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs23(Just(x0), Just(x1), ty_Double) new_compare25(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Integer) new_esEs14(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_esEs14(x0, x1, ty_Double) new_lt13(x0, x1) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_splitLT13(x0, x1, x2, x3, EQ, x4, x5) new_compare13(x0, x1, x2, x3, True, x4, x5) new_addToFM_C0(Branch([], x0, x1, x2, x3), [], x4, x5, x6) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_not(True) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_lt22(x0, x1, app(ty_Ratio, x2)) new_mkVBalBranch3MkVBalBranch27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, LT, x12, x13) new_ltEs21(x0, x1, ty_Float) new_mkVBalBranch3MkVBalBranch13(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs30(x0, x1, ty_Integer) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Bool) new_splitLT14(x0, x1, x2, x3, x4, x5) new_esEs36(x0, x1, ty_Ordering) new_mkVBalBranch3MkVBalBranch214(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs13(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt20(x0, x1, ty_Float) new_splitLT30(:(x0, x1), x2, x3, x4, x5, [], x6, x7) new_ltEs15(x0, x1) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs18(False, False) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs34(x0, x1, ty_Float) new_compare28(GT, EQ) new_compare28(EQ, GT) new_ltEs19(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_splitLT12(x0, x1, x2, x3, x4, x5, x6, x7, GT, x8, x9) new_ltEs19(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_ltEs6(True, True) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_primPlusInt(Branch(x0, x1, Neg(x2), x3, x4), x5, x6, EmptyFM, x7, x8) new_esEs4(x0, x1, ty_Integer) new_mkVBalBranch3MkVBalBranch29(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, EQ, x12, x13) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primMinusNat0(Succ(x0), Zero) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Char) new_asAs(True, x0) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare13(x0, x1, x2, x3, False, x4, x5) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, x7, x8, LT, x9, x10) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(GT, GT) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs21(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_pePe(True, x0) new_mkVBalBranch0(x0, x1, Branch(x2, x3, Neg(Succ(x4)), x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13) new_lt11(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Bool) new_ltEs8(x0, x1) new_lt22(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_addToFM_C16(x0, x1, x2, x3, x4, EQ, x5, x6) new_ltEs23(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_compare0([], [], x0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_addToFM(x0, x1, x2, x3, x4) new_addToFM_C12(x0, x1, x2, x3, x4, x5, x6, x7, x8) new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Zero, Zero) new_esEs11(x0, x1, ty_Int) new_esEs23(Just(x0), Nothing, x1) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_not(False) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs32(x0, x1, ty_Int) new_splitGT5(Branch(x0, x1, x2, x3, x4), x5, x6) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_splitGT14(x0, x1, x2, x3, x4, x5, x6, x7) new_primCmpNat0(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Ordering) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_splitGT21(x0, x1, x2, x3, x4, x5, x6, x7, EQ, x8, x9) new_lt20(x0, x1, ty_Double) new_lt6(x0, x1, x2) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs18(x0, x1, ty_Ordering) new_mkVBalBranch3MkVBalBranch212(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs15(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_splitGT4(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) new_esEs31(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Int) new_lt12(x0, x1, ty_Double) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_splitGT22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9) new_mkVBalBranch3Size_r1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_addToFM0(x0, x1, x2) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare19(True, False) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(False, True) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Int) new_esEs16(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, ty_Integer) new_esEs12(EQ, EQ) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_addToFM_C16(x0, x1, x2, x3, x4, LT, x5, x6) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Char) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Float) new_splitLT5(EmptyFM, x0, x1, x2, x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_splitLT5(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_splitLT17(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9) new_ltEs24(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_addToFM_C22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primMinusNat0(Zero, Zero) new_lt23(x0, x1, ty_Ordering) new_mkVBalBranch3MkVBalBranch213(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_mkVBalBranch3MkVBalBranch14(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, True, x11, x12) new_emptyFM(x0, x1) new_compare28(GT, GT) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_[], x2)) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(:(x0, x1), [], x2) new_lt23(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Double) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_primPlusInt(Branch(x0, x1, Pos(x2), x3, x4), x5, x6, Branch(x7, x8, x9, x10, x11), x12, x13) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primMinusNat1(Succ(x0)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_@0) new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) new_splitGT12(x0, x1, x2, x3, x4, x5, EQ, x6, x7) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_sizeFM1(EmptyFM, x0, x1) new_ltEs18(x0, x1, ty_Char) new_compare211(x0, x1, True, x2, x3) new_esEs7(x0, x1, ty_Ordering) 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_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Float) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) new_sr(x0, x1) new_sIZE_RATIO new_lt20(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Nothing, Nothing, x0) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Integer) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, EQ, x4, x5) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, LT, x4, x5) new_esEs23(Nothing, Just(x0), x1) new_lt21(x0, x1, ty_Double) new_splitLT15(x0, x1, x2, x3, x4, x5, EQ, x6, x7) new_esEs7(x0, x1, ty_Double) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Int) new_primPlusInt2(Pos(x0), x1, x2, x3, x4, x5) new_esEs11(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, x2) new_primPlusNat0(Zero, Succ(x0)) new_mkVBalBranch3MkVBalBranch16(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, False, x11, x12) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs6(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_compare25(x0, x1, app(ty_[], x2)) new_splitGT12(x0, x1, x2, x3, x4, x5, LT, x6, x7) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_ltEs23(x0, x1, app(ty_[], x2)) new_splitLT21(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_splitLT22(x0, x1, x2, x3, x4, x5, x6, x7, EQ, x8, x9) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Float) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, x7, x8, GT, x9, x10) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_splitLT30([], x0, x1, x2, x3, :(x4, x5), x6, x7) new_ltEs22(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_ltEs22(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Integer) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_lt19(x0, x1, x2, x3) new_splitLT15(x0, x1, x2, x3, x4, x5, LT, x6, x7) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare25(x0, x1, ty_Char) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Char) new_ltEs5(Left(x0), Right(x1), x2, x3) new_ltEs5(Right(x0), Left(x1), x2, x3) new_mkVBalBranch0(x0, x1, Branch(x2, x3, Pos(Zero), x4, x5), Branch(x6, x7, x8, x9, x10), x11, x12) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, x2, x3) new_esEs7(x0, x1, ty_Char) new_lt10(x0, x1, x2) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs14(x0, x1, ty_Bool) new_lt16(x0, x1, x2, x3, x4) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs18(False, True) new_esEs18(True, False) new_compare7(Nothing, Just(x0), x1) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(False, False) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Ordering) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), Zero) new_splitLT22(x0, x1, x2, x3, x4, x5, x6, x7, LT, x8, x9) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(True, True) new_esEs16(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Double) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_esEs21(Char(x0), Char(x1)) new_esEs9(x0, x1, ty_Bool) new_splitGT30(:(x0, x1), x2, x3, x4, x5, :(x6, x7), x8, x9) new_esEs5(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_mkVBalBranch3MkVBalBranch15(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_lt12(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Double) new_compare28(LT, GT) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_addToFM_C16(x0, x1, x2, x3, x4, GT, x5, x6) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_mkVBalBranch3MkVBalBranch210(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, LT, x11, x12) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Double) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_primPlusInt2(Neg(x0), x1, x2, x3, x4, x5) new_esEs15(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_splitGT30([], x0, x1, x2, x3, :(x4, x5), x6, x7) new_esEs16(x0, x1, ty_Bool) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt20(x0, x1, ty_Bool) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs39(x0, x1, ty_Double) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primPlusInt(EmptyFM, x0, x1, EmptyFM, x2, x3) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Bool) new_lt12(x0, x1, ty_Bool) new_primPlusInt1(x0, Neg(x1)) new_mkVBalBranch3MkVBalBranch13(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_compare24(x0, x1, True, x2, x3) new_lt22(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Integer) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_splitGT21(x0, x1, x2, x3, x4, x5, x6, x7, GT, x8, x9) new_ltEs13(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primPlusInt(Branch(x0, x1, Pos(x2), x3, x4), x5, x6, EmptyFM, x7, x8) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Zero) new_sizeFM(x0, x1, x2, x3, x4, x5, x6) new_esEs29(x0, x1, ty_Int) new_mkVBalBranch3MkVBalBranch210(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, GT, x11, x12) new_ltEs14(EQ, EQ) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Int) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Int) new_lt11(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_primPlusInt1(x0, Pos(x1)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_lt17(x0, x1) new_compare212(x0, x1, False, x2) new_esEs14(x0, x1, ty_Char) new_mkVBalBranch3MkVBalBranch27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, EQ, x12, x13) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_mkBalBranch6MkBalBranch50(x0, x1, x2, x3, x4, x5) new_compare14(x0, x1, True, x2, x3) new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, True, x3, x4) new_esEs14(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Integer) new_compare6(x0, x1) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt12(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) new_ltEs13(Nothing, Nothing, x0) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_@0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_lt21(x0, x1, ty_Float) new_compare110(x0, x1, False, x2, x3) new_ltEs22(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_primPlusNat1(Zero, x0) new_splitGT12(x0, x1, x2, x3, x4, x5, GT, x6, x7) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_mkVBalBranch3MkVBalBranch29(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, LT, x12, x13) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt7(x0, x1) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, x7, x8, EQ, x9, x10) new_primPlusInt(EmptyFM, x0, x1, Branch(x2, x3, Neg(x4), x5, x6), x7, x8) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs17(:(x0, x1), [], x2) new_mkVBalBranch3MkVBalBranch28(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, LT, x11, x12) new_compare25(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_@0) new_primMinusNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch3(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) new_esEs15(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_@0) new_primPlusInt(EmptyFM, x0, x1, Branch(x2, x3, Pos(x4), x5, x6), x7, x8) new_esEs17([], [], x0) new_ltEs7(x0, x1) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, ty_Ordering) new_splitLT13(x0, x1, x2, x3, LT, x4, x5) new_esEs4(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Double) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_addToFM_C0(Branch(:(x0, x1), x2, x3, x4, x5), :(x6, x7), x8, x9, x10) new_ltEs24(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_splitGT17(x0, x1, x2, x3, x4, x5, x6, x7, EQ, x8, x9) new_esEs9(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs13(Just(x0), Just(x1), ty_Float) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1) new_lt23(x0, x1, ty_Integer) new_compare24(x0, x1, False, x2, x3) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_gt(x0, x1) new_ltEs23(x0, x1, ty_Int) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare0([], :(x0, x1), x2) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(LT, LT) new_esEs25(x0, x1) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_mkVBalBranch3MkVBalBranch28(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, GT, x11, x12) new_esEs14(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Char) new_lt22(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_splitGT17(x0, x1, x2, x3, x4, x5, x6, x7, GT, x8, x9) new_esEs36(x0, x1, ty_Integer) new_mkBalBranch(x0, x1, x2, x3, x4, x5) new_compare16(x0, x1, False, x2) new_splitLT15(x0, x1, x2, x3, x4, x5, GT, x6, x7) new_ltEs23(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs14(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_lt12(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs16(x0, x1) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs23(Just(x0), Just(x1), ty_Bool) new_lt11(x0, x1, ty_Bool) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Bool) new_compare25(x0, x1, app(ty_Ratio, x2)) new_splitGT13(x0, x1, x2, x3, GT, x4, x5) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Float(x0, x1), Float(x2, x3)) new_esEs36(x0, x1, ty_@0) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_@0) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, ty_Char) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(x0, x1, False, x2, x3) new_lt23(x0, x1, ty_Bool) new_compare212(x0, x1, True, x2) new_ltEs24(x0, x1, ty_Float) new_lt27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_lt21(x0, x1, ty_Integer) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_splitGT5(EmptyFM, x0, x1) new_lt26(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_@0) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Integer) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Float) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkVBalBranch3Size_r2(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_splitGT21(x0, x1, x2, x3, x4, x5, x6, x7, LT, x8, x9) new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, GT, x7, x8) new_esEs39(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs23(Just(x0), Just(x1), ty_Integer) 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. ---------------------------------------- (67) 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 ---------------------------------------- (68) YES ---------------------------------------- (69) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare21(yvy96, yvy97, False, app(app(ty_Either, cag), cah), cab) -> new_ltEs2(yvy96, yvy97, cag, cah) new_compare1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ba, bb, bc) -> new_compare2(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, ba), new_asAs(new_esEs5(yvy4001, yvy3001, bb), new_esEs4(yvy4002, yvy3002, bc))), ba, bb, bc) new_ltEs(yvy89, yvy90, ga) -> new_compare(yvy89, yvy90, ga) new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, gc, app(app(app(ty_@3, ge), gf), gg)) -> new_ltEs0(yvy892, yvy902, ge, gf, gg) new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, app(ty_[], bgg)), bgh)) -> new_lt(yvy890, yvy900, bgg) new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, app(app(app(ty_@3, eh), fa), fb), cc) -> new_lt0(yvy153, yvy156, eh, fa, fb) new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, app(ty_[], bag)), gc), hf)) -> new_lt(yvy890, yvy900, bag) new_compare20(Right(yvy890), Right(yvy900), False, app(app(ty_Either, bec), app(ty_Maybe, beh))) -> new_ltEs1(yvy890, yvy900, beh) new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, bfe), app(ty_Maybe, bgb))) -> new_ltEs1(yvy891, yvy901, bgb) new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, gc, app(app(ty_Either, ha), hb)) -> new_ltEs2(yvy892, yvy902, ha, hb) new_lt1(yvy152, yvy155, cg) -> new_compare3(yvy152, yvy155, cg) new_compare23(yvy165, yvy166, yvy167, yvy168, False, app(app(ty_Either, cee), cef), cdh) -> new_lt2(yvy165, yvy167, cee, cef) new_compare23(yvy165, yvy166, yvy167, yvy168, False, app(ty_[], cdg), cdh) -> new_lt(yvy165, yvy167, cdg) new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), app(app(app(ty_@3, bah), bba), bbb), gc, hf) -> new_lt0(yvy890, yvy900, bah, bba, bbb) new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, app(ty_Maybe, bbc)), gc), hf)) -> new_lt1(yvy890, yvy900, bbc) new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, app(app(ty_Either, bac), bad), hf) -> new_lt2(yvy891, yvy901, bac, bad) new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, cb, app(app(ty_@2, ee), ef)) -> new_ltEs3(yvy154, yvy157, ee, ef) new_ltEs2(Right(yvy890), Right(yvy900), bec, app(app(ty_@2, bfc), bfd)) -> new_ltEs3(yvy890, yvy900, bfc, bfd) new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), gc), app(ty_Maybe, gh))) -> new_ltEs1(yvy892, yvy902, gh) new_ltEs2(Left(yvy890), Left(yvy900), app(ty_[], bda), bdb) -> new_ltEs(yvy890, yvy900, bda) new_compare21(yvy96, yvy97, False, app(app(app(ty_@3, cac), cad), cae), cab) -> new_ltEs0(yvy96, yvy97, cac, cad, cae) new_compare20(Right(yvy890), Right(yvy900), False, app(app(ty_Either, bec), app(app(ty_Either, bfa), bfb))) -> new_ltEs2(yvy890, yvy900, bfa, bfb) new_compare21(yvy96, yvy97, False, app(ty_[], caa), cab) -> new_ltEs(yvy96, yvy97, caa) new_compare22(yvy103, yvy104, False, cbc, app(ty_[], cbd)) -> new_ltEs(yvy103, yvy104, cbd) new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, app(app(ty_@2, fg), fh), cc) -> new_lt3(yvy153, yvy156, fg, fh) new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, bfe), app(app(ty_Either, bgc), bgd))) -> new_ltEs2(yvy891, yvy901, bgc, bgd) new_compare22(yvy103, yvy104, False, cbc, app(app(ty_@2, ccc), ccd)) -> new_ltEs3(yvy103, yvy104, ccc, ccd) new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, app(ty_Maybe, bab), hf) -> new_lt1(yvy891, yvy901, bab) new_compare21(yvy96, yvy97, False, app(ty_Maybe, caf), cab) -> new_ltEs1(yvy96, yvy97, caf) new_compare22(yvy103, yvy104, False, cbc, app(ty_Maybe, cbh)) -> new_ltEs1(yvy103, yvy104, cbh) new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), bfe, app(app(ty_@2, bge), bgf)) -> new_ltEs3(yvy891, yvy901, bge, bgf) new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), app(app(ty_@2, bhg), bhh), bgh) -> new_lt3(yvy890, yvy900, bhg, bhh) new_compare20(Just(yvy890), Just(yvy900), False, app(ty_Maybe, app(ty_[], bbh))) -> new_ltEs(yvy890, yvy900, bbh) new_compare23(yvy165, yvy166, yvy167, yvy168, False, cce, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs0(yvy166, yvy168, ccg, cch, cda) new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), gc), app(app(ty_Either, ha), hb))) -> new_ltEs2(yvy892, yvy902, ha, hb) new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, app(app(app(ty_@3, bha), bhb), bhc)), bgh)) -> new_lt0(yvy890, yvy900, bha, bhb, bhc) new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), app(ty_[], bag), gc, hf) -> new_lt(yvy890, yvy900, bag) new_ltEs2(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bdc), bdd), bde), bdb) -> new_ltEs0(yvy890, yvy900, bdc, bdd, bde) new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), app(ty_[], he)), hf)) -> new_lt(yvy891, yvy901, he) new_primCompAux(Left(yvy4000), Left(yvy3000), yvy51, app(app(ty_Either, be), bf)) -> new_compare21(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, be), be, bf) new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, app(app(ty_Either, da), db), cb, cc) -> new_compare4(yvy152, yvy155, da, db) new_compare20(Left(yvy890), Left(yvy900), False, app(app(ty_Either, app(ty_[], bda)), bdb)) -> new_ltEs(yvy890, yvy900, bda) new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), bfe, app(ty_Maybe, bgb)) -> new_ltEs1(yvy891, yvy901, bgb) new_lt3(yvy152, yvy155, dc, dd) -> new_compare5(yvy152, yvy155, dc, dd) new_compare20(yvy89, yvy90, False, app(ty_[], ga)) -> new_compare(yvy89, yvy90, ga) new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, cb, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs0(yvy154, yvy157, dg, dh, ea) new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, app(ty_[], he), hf) -> new_lt(yvy891, yvy901, he) new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, gc, app(ty_Maybe, gh)) -> new_ltEs1(yvy892, yvy902, gh) new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), app(ty_[], bgg), bgh) -> new_lt(yvy890, yvy900, bgg) new_compare20(Just(yvy890), Just(yvy900), False, app(ty_Maybe, app(app(ty_Either, bce), bcf))) -> new_ltEs2(yvy890, yvy900, bce, bcf) new_ltEs2(Right(yvy890), Right(yvy900), bec, app(ty_Maybe, beh)) -> new_ltEs1(yvy890, yvy900, beh) new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), app(ty_Maybe, bab)), hf)) -> new_lt1(yvy891, yvy901, bab) new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), app(ty_Maybe, bbc), gc, hf) -> new_lt1(yvy890, yvy900, bbc) new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), app(app(app(ty_@3, hg), hh), baa)), hf)) -> new_lt0(yvy891, yvy901, hg, hh, baa) new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), app(app(ty_Either, bbd), bbe), gc, hf) -> new_lt2(yvy890, yvy900, bbd, bbe) new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, cb, app(ty_[], df)) -> new_ltEs(yvy154, yvy157, df) new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), bfe, app(app(app(ty_@3, bfg), bfh), bga)) -> new_ltEs0(yvy891, yvy901, bfg, bfh, bga) new_primCompAux(Right(yvy4000), Right(yvy3000), yvy51, app(app(ty_Either, be), bf)) -> new_compare22(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bf), be, bf) new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, app(app(ty_@2, dc), dd), cb, cc) -> new_compare5(yvy152, yvy155, dc, dd) new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, app(app(ty_@2, bbf), bbg)), gc), hf)) -> new_lt3(yvy890, yvy900, bbf, bbg) new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), app(app(ty_@2, bae), baf)), hf)) -> new_lt3(yvy891, yvy901, bae, baf) new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), gc), app(app(app(ty_@3, ge), gf), gg))) -> new_ltEs0(yvy892, yvy902, ge, gf, gg) new_compare20(Left(yvy890), Left(yvy900), False, app(app(ty_Either, app(app(app(ty_@3, bdc), bdd), bde)), bdb)) -> new_ltEs0(yvy890, yvy900, bdc, bdd, bde) new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), gc), app(app(ty_@2, hc), hd))) -> new_ltEs3(yvy892, yvy902, hc, hd) new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, app(ty_Maybe, bhd)), bgh)) -> new_lt1(yvy890, yvy900, bhd) new_ltEs1(Just(yvy890), Just(yvy900), app(ty_Maybe, bcd)) -> new_ltEs1(yvy890, yvy900, bcd) new_compare23(yvy165, yvy166, yvy167, yvy168, False, app(app(app(ty_@3, cea), ceb), cec), cdh) -> new_lt0(yvy165, yvy167, cea, ceb, cec) new_lt2(yvy152, yvy155, da, db) -> new_compare4(yvy152, yvy155, da, db) new_compare23(yvy165, yvy166, yvy167, yvy168, False, app(app(ty_@2, ceg), ceh), cdh) -> new_lt3(yvy165, yvy167, ceg, ceh) new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), app(app(ty_@2, bbf), bbg), gc, hf) -> new_lt3(yvy890, yvy900, bbf, bbg) new_ltEs2(Left(yvy890), Left(yvy900), app(ty_Maybe, bdf), bdb) -> new_ltEs1(yvy890, yvy900, bdf) new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), app(ty_Maybe, bhd), bgh) -> new_lt1(yvy890, yvy900, bhd) new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, app(app(ty_Either, bbd), bbe)), gc), hf)) -> new_lt2(yvy890, yvy900, bbd, bbe) new_compare23(yvy165, yvy166, yvy167, yvy168, False, app(ty_Maybe, ced), cdh) -> new_lt1(yvy165, yvy167, ced) new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, gc, app(ty_[], gd)) -> new_ltEs(yvy892, yvy902, gd) new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), bfe, app(app(ty_Either, bgc), bgd)) -> new_ltEs2(yvy891, yvy901, bgc, bgd) new_ltEs1(Just(yvy890), Just(yvy900), app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs0(yvy890, yvy900, bca, bcb, bcc) new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, app(app(ty_@2, bae), baf), hf) -> new_lt3(yvy891, yvy901, bae, baf) new_lt0(yvy152, yvy155, cd, ce, cf) -> new_compare1(yvy152, yvy155, cd, ce, cf) new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, bfe), app(ty_[], bff))) -> new_ltEs(yvy891, yvy901, bff) new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, bfe), app(app(ty_@2, bge), bgf))) -> new_ltEs3(yvy891, yvy901, bge, bgf) new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), bfe, app(ty_[], bff)) -> new_ltEs(yvy891, yvy901, bff) new_ltEs1(Just(yvy890), Just(yvy900), app(app(ty_@2, bcg), bch)) -> new_ltEs3(yvy890, yvy900, bcg, bch) new_compare20(Right(yvy890), Right(yvy900), False, app(app(ty_Either, bec), app(app(ty_@2, bfc), bfd))) -> new_ltEs3(yvy890, yvy900, bfc, bfd) new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, app(app(ty_Either, bhe), bhf)), bgh)) -> new_lt2(yvy890, yvy900, bhe, bhf) new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, app(ty_Maybe, cg), cb, cc) -> new_compare3(yvy152, yvy155, cg) new_compare20(Just(yvy890), Just(yvy900), False, app(ty_Maybe, app(ty_Maybe, bcd))) -> new_ltEs1(yvy890, yvy900, bcd) new_compare20(Just(yvy890), Just(yvy900), False, app(ty_Maybe, app(app(ty_@2, bcg), bch))) -> new_ltEs3(yvy890, yvy900, bcg, bch) new_compare20(Left(yvy890), Left(yvy900), False, app(app(ty_Either, app(app(ty_Either, bdg), bdh)), bdb)) -> new_ltEs2(yvy890, yvy900, bdg, bdh) new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), app(app(ty_Either, bhe), bhf), bgh) -> new_lt2(yvy890, yvy900, bhe, bhf) new_primCompAux(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), yvy51, app(app(ty_@2, bg), bh)) -> new_compare23(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, bg), new_esEs10(yvy4001, yvy3001, bh)), bg, bh) new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), gc), app(ty_[], gd))) -> new_ltEs(yvy892, yvy902, gd) new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, app(app(app(ty_@3, hg), hh), baa), hf) -> new_lt0(yvy891, yvy901, hg, hh, baa) new_primCompAux(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), yvy51, app(app(app(ty_@3, ba), bb), bc)) -> new_compare2(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, ba), new_asAs(new_esEs5(yvy4001, yvy3001, bb), new_esEs4(yvy4002, yvy3002, bc))), ba, bb, bc) new_lt(yvy152, yvy155, ca) -> new_compare(yvy152, yvy155, ca) new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, gc, app(app(ty_@2, hc), hd)) -> new_ltEs3(yvy892, yvy902, hc, hd) new_compare(:(yvy4000, yvy4001), :(yvy3000, yvy3001), h) -> new_primCompAux(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, h), h) new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, app(app(app(ty_@3, cd), ce), cf), cb, cc) -> new_compare1(yvy152, yvy155, cd, ce, cf) new_compare20(Left(yvy890), Left(yvy900), False, app(app(ty_Either, app(app(ty_@2, bea), beb)), bdb)) -> new_ltEs3(yvy890, yvy900, bea, beb) new_compare23(yvy165, yvy166, yvy167, yvy168, False, cce, app(ty_Maybe, cdb)) -> new_ltEs1(yvy166, yvy168, cdb) new_compare3(Just(yvy4000), Just(yvy3000), bd) -> new_compare20(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, bd), bd) new_compare4(Right(yvy4000), Right(yvy3000), be, bf) -> new_compare22(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bf), be, bf) new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, cb, app(app(ty_Either, ec), ed)) -> new_ltEs2(yvy154, yvy157, ec, ed) new_ltEs2(Right(yvy890), Right(yvy900), bec, app(app(ty_Either, bfa), bfb)) -> new_ltEs2(yvy890, yvy900, bfa, bfb) new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), app(app(app(ty_@3, bha), bhb), bhc), bgh) -> new_lt0(yvy890, yvy900, bha, bhb, bhc) new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, app(ty_[], ca), cb, cc) -> new_compare(yvy152, yvy155, ca) new_compare21(yvy96, yvy97, False, app(app(ty_@2, cba), cbb), cab) -> new_ltEs3(yvy96, yvy97, cba, cbb) new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, app(app(ty_Either, fd), ff), cc) -> new_lt2(yvy153, yvy156, fd, ff) new_ltEs2(Right(yvy890), Right(yvy900), bec, app(app(app(ty_@3, bee), bef), beg)) -> new_ltEs0(yvy890, yvy900, bee, bef, beg) new_compare22(yvy103, yvy104, False, cbc, app(app(ty_Either, cca), ccb)) -> new_ltEs2(yvy103, yvy104, cca, ccb) new_compare20(Right(yvy890), Right(yvy900), False, app(app(ty_Either, bec), app(app(app(ty_@3, bee), bef), beg))) -> new_ltEs0(yvy890, yvy900, bee, bef, beg) new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, bfe), app(app(app(ty_@3, bfg), bfh), bga))) -> new_ltEs0(yvy891, yvy901, bfg, bfh, bga) new_primCompAux(yvy400, yvy300, yvy51, app(ty_[], h)) -> new_compare(yvy400, yvy300, h) new_compare20(Just(yvy890), Just(yvy900), False, app(ty_Maybe, app(app(app(ty_@3, bca), bcb), bcc))) -> new_ltEs0(yvy890, yvy900, bca, bcb, bcc) new_ltEs2(Left(yvy890), Left(yvy900), app(app(ty_@2, bea), beb), bdb) -> new_ltEs3(yvy890, yvy900, bea, beb) new_compare23(yvy165, yvy166, yvy167, yvy168, False, cce, app(app(ty_Either, cdc), cdd)) -> new_ltEs2(yvy166, yvy168, cdc, cdd) new_compare22(yvy103, yvy104, False, cbc, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs0(yvy103, yvy104, cbe, cbf, cbg) new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, app(ty_Maybe, fc), cc) -> new_lt1(yvy153, yvy156, fc) new_compare5(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bg, bh) -> new_compare23(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, bg), new_esEs10(yvy4001, yvy3001, bh)), bg, bh) new_compare23(yvy165, yvy166, yvy167, yvy168, False, cce, app(ty_[], ccf)) -> new_ltEs(yvy166, yvy168, ccf) new_compare20(Left(yvy890), Left(yvy900), False, app(app(ty_Either, app(ty_Maybe, bdf)), bdb)) -> new_ltEs1(yvy890, yvy900, bdf) new_compare(:(yvy4000, yvy4001), :(yvy3000, yvy3001), h) -> new_compare(yvy4001, yvy3001, h) new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, cb, app(ty_Maybe, eb)) -> new_ltEs1(yvy154, yvy157, eb) new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, app(app(app(ty_@3, bah), bba), bbb)), gc), hf)) -> new_lt0(yvy890, yvy900, bah, bba, bbb) new_compare20(Right(yvy890), Right(yvy900), False, app(app(ty_Either, bec), app(ty_[], bed))) -> new_ltEs(yvy890, yvy900, bed) new_primCompAux(Just(yvy4000), Just(yvy3000), yvy51, app(ty_Maybe, bd)) -> new_compare20(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, bd), bd) new_ltEs2(Left(yvy890), Left(yvy900), app(app(ty_Either, bdg), bdh), bdb) -> new_ltEs2(yvy890, yvy900, bdg, bdh) new_compare4(Left(yvy4000), Left(yvy3000), be, bf) -> new_compare21(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, be), be, bf) new_ltEs1(Just(yvy890), Just(yvy900), app(ty_[], bbh)) -> new_ltEs(yvy890, yvy900, bbh) new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, app(ty_[], eg), cc) -> new_lt(yvy153, yvy156, eg) new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), app(app(ty_Either, bac), bad)), hf)) -> new_lt2(yvy891, yvy901, bac, bad) new_compare23(yvy165, yvy166, yvy167, yvy168, False, cce, app(app(ty_@2, cde), cdf)) -> new_ltEs3(yvy166, yvy168, cde, cdf) new_ltEs2(Right(yvy890), Right(yvy900), bec, app(ty_[], bed)) -> new_ltEs(yvy890, yvy900, bed) new_ltEs1(Just(yvy890), Just(yvy900), app(app(ty_Either, bce), bcf)) -> new_ltEs2(yvy890, yvy900, bce, bcf) new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, app(app(ty_@2, bhg), bhh)), bgh)) -> new_lt3(yvy890, yvy900, bhg, bhh) The TRS R consists of the following rules: new_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bdc), bdd), bde), bdb) -> new_ltEs12(yvy890, yvy900, bdc, bdd, bde) new_ltEs20(yvy891, yvy901, app(ty_[], bff)) -> new_ltEs11(yvy891, yvy901, bff) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, bae), baf)) -> new_lt5(yvy891, yvy901, bae, baf) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bec, app(ty_Maybe, beh)) -> new_ltEs13(yvy890, yvy900, beh) new_lt20(yvy890, yvy900, app(ty_Ratio, ebc)) -> new_lt10(yvy890, yvy900, ebc) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, bcg), bch)) -> new_ltEs17(yvy890, yvy900, bcg, bch) new_ltEs5(Right(yvy890), Right(yvy900), bec, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, bac), bad)) -> new_lt19(yvy891, yvy901, bac, bad) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, cd, ce, cf) -> new_esEs12(new_compare27(yvy152, yvy155, cd, ce, cf), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, dc), dd)) -> new_esEs19(yvy152, yvy155, dc, dd) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bdf), bdb) -> new_ltEs13(yvy890, yvy900, bdf) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, bcd)) -> new_ltEs13(yvy890, yvy900, bcd) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], fdb)) -> new_esEs17(yvy40000, yvy30000, fdb) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, deg, deh) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bec, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ehh, faa) -> new_asAs(new_esEs36(yvy40000, yvy30000, ehh), new_esEs35(yvy40001, yvy30001, faa)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], dbg), dbh) -> new_esEs17(yvy40000, yvy30000, dbg) new_compare25(yvy400, yvy300, app(ty_Ratio, eac)) -> new_compare26(yvy400, yvy300, eac) new_lt19(yvy152, yvy155, da, db) -> new_esEs12(new_compare30(yvy152, yvy155, da, db), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], ca)) -> new_lt6(yvy152, yvy155, ca) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, dch), dbh) -> new_esEs23(yvy40000, yvy30000, dch) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], eg)) -> new_esEs17(yvy153, yvy156, eg) new_lt21(yvy165, yvy167, app(app(app(ty_@3, cea), ceb), cec)) -> new_lt16(yvy165, yvy167, cea, ceb, cec) new_esEs39(yvy152, yvy155, app(ty_Ratio, ead)) -> new_esEs26(yvy152, yvy155, ead) new_lt11(yvy891, yvy901, app(app(app(ty_@3, hg), hh), baa)) -> new_lt16(yvy891, yvy901, hg, hh, baa) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fc)) -> new_esEs23(yvy153, yvy156, fc) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, ecg), ech), eda)) -> new_esEs13(yvy4001, yvy3001, ecg, ech, eda) new_lt21(yvy165, yvy167, app(app(ty_Either, cee), cef)) -> new_lt19(yvy165, yvy167, cee, cef) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], dfc)) -> new_esEs17(yvy4000, yvy3000, dfc) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bec, bdb) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bec, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, dbh) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], gd)) -> new_ltEs11(yvy892, yvy902, gd) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, dbh) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], bag)) -> new_esEs17(yvy890, yvy900, bag) new_lt21(yvy165, yvy167, app(app(ty_@2, ceg), ceh)) -> new_lt5(yvy165, yvy167, ceg, ceh) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, cfa, cfb, cfc) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fc)) -> new_lt4(yvy153, yvy156, fc) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, cee), cef)) -> new_esEs22(yvy165, yvy167, cee, cef) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, ec), ed)) -> new_ltEs5(yvy154, yvy157, ec, ed) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dfe), dff), dfg)) -> new_esEs13(yvy40000, yvy30000, dfe, dff, dfg) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, egg), egh), eha)) -> new_esEs13(yvy4002, yvy3002, egg, egh, eha) new_esEs23(Nothing, Just(yvy30000), fab) -> False new_esEs23(Just(yvy40000), Nothing, fab) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), ddb, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, dbh) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, ebb)) -> new_ltEs9(yvy891, yvy901, ebb) new_esEs22(Right(yvy40000), Right(yvy30000), ddb, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), ddb, app(ty_[], ddc)) -> new_esEs17(yvy40000, yvy30000, ddc) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), bfe, bgh) -> new_pePe(new_lt20(yvy890, yvy900, bfe), new_asAs(new_esEs34(yvy890, yvy900, bfe), new_ltEs20(yvy891, yvy901, bgh))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, cgh)) -> new_esEs26(yvy40002, yvy30002, cgh) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fd), ff)) -> new_esEs22(yvy153, yvy156, fd, ff) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, dfa) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], he)) -> new_lt6(yvy891, yvy901, he) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bdb) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, feh), ffa)) -> new_esEs19(yvy4000, yvy3000, feh, ffa) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, fab) -> True new_lt12(yvy890, yvy900, app(ty_[], bag)) -> new_lt6(yvy890, yvy900, bag) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, bhd)) -> new_esEs23(yvy890, yvy900, bhd) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], efd)) -> new_esEs17(yvy4000, yvy3000, efd) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dge)) -> new_esEs26(yvy40000, yvy30000, dge) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], ga)) -> new_ltEs11(yvy89, yvy90, ga) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], caa)) -> new_ltEs11(yvy96, yvy97, caa) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, dba), dbb)) -> new_esEs22(yvy40000, yvy30000, dba, dbb) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bdb) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, cb, cc) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, de), new_asAs(new_esEs39(yvy152, yvy155, de), new_pePe(new_lt23(yvy153, yvy156, cb), new_asAs(new_esEs38(yvy153, yvy156, cb), new_ltEs23(yvy154, yvy157, cc)))), de, cb, cc) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bdg), bdh), bdb) -> new_ltEs5(yvy890, yvy900, bdg, bdh) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, bbc)) -> new_esEs23(yvy890, yvy900, bbc) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, bd)) -> new_compare7(yvy400, yvy300, bd) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, fbg)) -> new_esEs26(yvy40001, yvy30001, fbg) new_lt22(yvy152, yvy155, app(ty_Maybe, cg)) -> new_lt4(yvy152, yvy155, cg) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, ga) -> new_fsEs(new_compare0(yvy89, yvy90, ga)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, dbe, dbf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, dbe, dbf) new_compare30(Right(yvy4000), Right(yvy3000), be, bf) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bf), be, bf) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, cd), ce), cf)) -> new_lt16(yvy152, yvy155, cd, ce, cf) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, bfg), bfh), bga)) -> new_ltEs12(yvy891, yvy901, bfg, bfh, bga) new_compare110(yvy205, yvy206, True, fac, fad) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], cdg)) -> new_esEs17(yvy165, yvy167, cdg) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, cgc), cgd)) -> new_esEs19(yvy40002, yvy30002, cgc, cgd) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), dfb) -> new_asAs(new_esEs30(yvy40000, yvy30000, dfb), new_esEs29(yvy40001, yvy30001, dfb)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, feb)) -> new_esEs23(yvy40000, yvy30000, feb) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, efh), ega)) -> new_esEs19(yvy4000, yvy3000, efh, ega) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dfh), dga)) -> new_esEs19(yvy40000, yvy30000, dfh, dga) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), ddb, app(ty_Maybe, dec)) -> new_esEs23(yvy40000, yvy30000, dec) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, fdh), fea)) -> new_esEs22(yvy40000, yvy30000, fdh, fea) new_esEs33(yvy890, yvy900, app(app(ty_Either, bbd), bbe)) -> new_esEs22(yvy890, yvy900, bbd, bbe) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, fag), fah), fba)) -> new_esEs13(yvy40001, yvy30001, fag, fah, fba) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, ge), gf), gg)) -> new_ltEs12(yvy892, yvy902, ge, gf, gg) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], eg)) -> new_lt6(yvy153, yvy156, eg) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, gc, hf) -> new_pePe(new_lt12(yvy890, yvy900, gb), new_asAs(new_esEs33(yvy890, yvy900, gb), new_pePe(new_lt11(yvy891, yvy901, gc), new_asAs(new_esEs32(yvy891, yvy901, gc), new_ltEs19(yvy892, yvy902, hf))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cfd, cfe, cff) -> new_asAs(new_esEs16(yvy40000, yvy30000, cfd), new_asAs(new_esEs15(yvy40001, yvy30001, cfe), new_esEs14(yvy40002, yvy30002, cff))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, dbe, dbf) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, bgb)) -> new_ltEs13(yvy891, yvy901, bgb) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bec, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], dac)) -> new_esEs17(yvy40000, yvy30000, dac) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, egb), egc)) -> new_esEs22(yvy4000, yvy3000, egb, egc) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], bbh)) -> new_ltEs11(yvy890, yvy900, bbh) new_esEs39(yvy152, yvy155, app(ty_[], ca)) -> new_esEs17(yvy152, yvy155, ca) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, dbc)) -> new_esEs23(yvy40000, yvy30000, dbc) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bec, app(ty_[], bed)) -> new_ltEs11(yvy890, yvy900, bed) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bec, app(ty_Ratio, def)) -> new_ltEs9(yvy890, yvy900, def) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, bah), bba), bbb)) -> new_lt16(yvy890, yvy900, bah, bba, bbb) new_esEs39(yvy152, yvy155, app(ty_Maybe, cg)) -> new_esEs23(yvy152, yvy155, cg) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, fda)) -> new_esEs26(yvy40000, yvy30000, fda) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], dfc) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs12(yvy890, yvy900, bca, bcb, bcc) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(app(ty_Either, bac), bad)) -> new_esEs22(yvy891, yvy901, bac, bad) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, dhf), dhg)) -> new_esEs22(yvy4001, yvy3001, dhf, dhg) new_esEs22(Right(yvy40000), Right(yvy30000), ddb, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, dcf), dcg), dbh) -> new_esEs22(yvy40000, yvy30000, dcf, dcg) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, cfa, cfb, cfc) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, cfa, cfb, cfc) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, cac), cad), cae)) -> new_ltEs12(yvy96, yvy97, cac, cad, cae) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, bce), bcf)) -> new_ltEs5(yvy890, yvy900, bce, bcf) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bg, bh) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, bg), new_esEs10(yvy4001, yvy3001, bh)), bg, bh) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, ffh)) -> new_ltEs9(yvy154, yvy157, ffh) new_lt23(yvy153, yvy156, app(ty_Ratio, fga)) -> new_lt10(yvy153, yvy156, fga) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bdb) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs13(yvy40000, yvy30000, fca, fcb, fcc) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, ehg)) -> new_esEs26(yvy4002, yvy3002, ehg) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, bab)) -> new_esEs23(yvy891, yvy901, bab) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fgb) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, cde), cdf)) -> new_ltEs17(yvy166, yvy168, cde, cdf) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, dhh)) -> new_esEs23(yvy4001, yvy3001, dhh) new_compare25(yvy400, yvy300, app(app(app(ty_@3, ba), bb), bc)) -> new_compare27(yvy400, yvy300, ba, bb, bc) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs13(yvy40000, yvy30000, dad, dae, daf) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs13(yvy152, yvy155, cd, ce, cf) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, ebh), eca)) -> new_esEs19(yvy4000, yvy3000, ebh, eca) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs13(yvy40000, yvy30000, fdc, fdd, fde) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, caf)) -> new_ltEs13(yvy96, yvy97, caf) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, fbb), fbc)) -> new_esEs19(yvy40001, yvy30001, fbb, fbc) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, ee), ef)) -> new_ltEs17(yvy154, yvy157, ee, ef) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs13(yvy153, yvy156, eh, fa, fb) new_lt5(yvy152, yvy155, dc, dd) -> new_esEs12(new_compare8(yvy152, yvy155, dc, dd), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs13(yvy40001, yvy30001, chb, chc, chd) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, bbc)) -> new_lt4(yvy890, yvy900, bbc) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, edb), edc)) -> new_esEs19(yvy4001, yvy3001, edb, edc) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs13(yvy40002, yvy30002, cfh, cga, cgb) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, egd)) -> new_esEs23(yvy4000, yvy3000, egd) new_esEs33(yvy890, yvy900, app(app(ty_@2, bbf), bbg)) -> new_esEs19(yvy890, yvy900, bbf, bbg) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, eed), eee)) -> new_esEs19(yvy4000, yvy3000, eed, eee) new_ltEs24(yvy89, yvy90, app(app(ty_@2, bfe), bgh)) -> new_ltEs17(yvy89, yvy90, bfe, bgh) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs13(yvy165, yvy167, cea, ceb, cec) new_esEs22(Right(yvy40000), Right(yvy30000), ddb, app(ty_Ratio, ded)) -> new_esEs26(yvy40000, yvy30000, ded) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, dbh) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, dbd)) -> new_esEs26(yvy40000, yvy30000, dbd) new_esEs22(Right(yvy40000), Right(yvy30000), ddb, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), dfc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dfc), new_esEs17(yvy40001, yvy30001, dfc)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, cce, cdh) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, dbh) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, fab)) -> new_esEs23(yvy4000, yvy3000, fab) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, fae) -> new_fsEs(new_compare26(yvy89, yvy90, fae)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, cbc, efb) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, efb), cbc, efb) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, dab)) -> new_esEs26(yvy40001, yvy30001, dab) new_compare25(yvy400, yvy300, app(app(ty_@2, bg), bh)) -> new_compare8(yvy400, yvy300, bg, bh) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fga)) -> new_esEs26(yvy153, yvy156, fga) new_esEs5(yvy4001, yvy3001, app(ty_[], dgh)) -> new_esEs17(yvy4001, yvy3001, dgh) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, fec)) -> new_esEs26(yvy40000, yvy30000, fec) new_ltEs24(yvy89, yvy90, app(ty_Ratio, fae)) -> new_ltEs9(yvy89, yvy90, fae) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, ddb), dbh)) -> new_esEs22(yvy4000, yvy3000, ddb, dbh) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, bhg), bhh)) -> new_esEs19(yvy890, yvy900, bhg, bhh) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, be), bf)) -> new_compare30(yvy400, yvy300, be, bf) new_esEs22(Right(yvy40000), Right(yvy30000), ddb, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs13(yvy40000, yvy30000, ddd, dde, ddf) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), ddb, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ha), hb)) -> new_ltEs5(yvy892, yvy902, ha, hb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, dbh) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ffg)) -> new_esEs26(yvy165, yvy167, ffg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dgd)) -> new_esEs23(yvy40000, yvy30000, dgd) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), ddb, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), ddb, app(app(ty_Either, dea), deb)) -> new_esEs22(yvy40000, yvy30000, dea, deb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], egf)) -> new_esEs17(yvy4002, yvy3002, egf) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, ehf)) -> new_esEs23(yvy4002, yvy3002, ehf) new_compare210(yvy165, yvy166, yvy167, yvy168, False, cce, cdh) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, cce), new_asAs(new_esEs37(yvy165, yvy167, cce), new_ltEs22(yvy166, yvy168, cdh)), cce, cdh) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], dfd)) -> new_esEs17(yvy40000, yvy30000, dfd) new_ltEs21(yvy103, yvy104, app(ty_Maybe, cbh)) -> new_ltEs13(yvy103, yvy104, cbh) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, dag), dah)) -> new_esEs19(yvy40000, yvy30000, dag, dah) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], cha)) -> new_esEs17(yvy40001, yvy30001, cha) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs13(yvy890, yvy900, bah, bba, bbb) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bdb) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), ddb, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs22(yvy166, yvy168, app(ty_Ratio, fff)) -> new_ltEs9(yvy166, yvy168, fff) new_lt10(yvy152, yvy155, ead) -> new_esEs12(new_compare26(yvy152, yvy155, ead), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), be, bf) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, ffb), ffc)) -> new_esEs22(yvy4000, yvy3000, ffb, ffc) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs13(yvy4000, yvy3000, cfd, cfe, cff) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, fbd), fbe)) -> new_esEs22(yvy40001, yvy30001, fbd, fbe) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, daa)) -> new_esEs23(yvy40001, yvy30001, daa) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dgb), dgc)) -> new_esEs22(yvy40000, yvy30000, dgb, dgc) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], ccf)) -> new_ltEs11(yvy166, yvy168, ccf) new_esEs32(yvy891, yvy901, app(app(ty_@2, bae), baf)) -> new_esEs19(yvy891, yvy901, bae, baf) new_compare0([], :(yvy3000, yvy3001), h) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, ehd), ehe)) -> new_esEs22(yvy4002, yvy3002, ehd, ehe) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bec, bdb) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, dhd), dhe)) -> new_esEs19(yvy4001, yvy3001, dhd, dhe) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], h)) -> new_compare0(yvy400, yvy300, h) new_esEs10(yvy4001, yvy3001, app(ty_[], ecf)) -> new_esEs17(yvy4001, yvy3001, ecf) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, dbh) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, eag)) -> new_lt10(yvy890, yvy900, eag) new_ltEs20(yvy891, yvy901, app(app(ty_Either, bgc), bgd)) -> new_ltEs5(yvy891, yvy901, bgc, bgd) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, dgf, cab) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, cge), cgf)) -> new_esEs22(yvy40002, yvy30002, cge, cgf) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bdb) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, eh), fa), fb)) -> new_lt16(yvy153, yvy156, eh, fa, fb) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], edh)) -> new_esEs17(yvy4000, yvy3000, edh) new_ltEs5(Right(yvy890), Right(yvy900), bec, app(app(ty_Either, bfa), bfb)) -> new_ltEs5(yvy890, yvy900, bfa, bfb) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bec, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], h) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], fbh)) -> new_esEs17(yvy40000, yvy30000, fbh) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), be, bf) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fed)) -> new_esEs17(yvy4000, yvy3000, fed) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bea), beb), bdb) -> new_ltEs17(yvy890, yvy900, bea, beb) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, dfb)) -> new_esEs26(yvy4000, yvy3000, dfb) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, eah) -> True new_ltEs13(Just(yvy890), Nothing, eah) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, ffd)) -> new_esEs23(yvy4000, yvy3000, ffd) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, chg), chh)) -> new_esEs22(yvy40001, yvy30001, chg, chh) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, fcd), fce)) -> new_esEs19(yvy40000, yvy30000, fcd, fce) new_ltEs19(yvy892, yvy902, app(ty_Maybe, gh)) -> new_ltEs13(yvy892, yvy902, gh) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bec, app(app(ty_@2, bfc), bfd)) -> new_ltEs17(yvy890, yvy900, bfc, bfd) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, ced)) -> new_lt4(yvy165, yvy167, ced) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fgb) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fgb), fgb) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ehh), faa)) -> new_esEs19(yvy4000, yvy3000, ehh, faa) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, eaa)) -> new_esEs26(yvy4001, yvy3001, eaa) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, bab)) -> new_lt4(yvy891, yvy901, bab) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, ecd)) -> new_esEs23(yvy4000, yvy3000, ecd) new_esEs39(yvy152, yvy155, app(app(ty_Either, da), db)) -> new_esEs22(yvy152, yvy155, da, db) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, ceg), ceh)) -> new_esEs19(yvy165, yvy167, ceg, ceh) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, eef), eeg)) -> new_esEs22(yvy4000, yvy3000, eef, eeg) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], cfg)) -> new_esEs17(yvy40002, yvy30002, cfg) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, eaf)) -> new_lt10(yvy891, yvy901, eaf) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bec), bdb)) -> new_ltEs5(yvy89, yvy90, bec, bdb) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, ccc), ccd)) -> new_ltEs17(yvy103, yvy104, ccc, ccd) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs13(yvy4001, yvy3001, dha, dhb, dhc) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, edf)) -> new_esEs23(yvy4001, yvy3001, edf) new_lt22(yvy152, yvy155, app(ty_Ratio, ead)) -> new_lt10(yvy152, yvy155, ead) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], df)) -> new_ltEs11(yvy154, yvy157, df) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, bd) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, cag), cah)) -> new_ltEs5(yvy96, yvy97, cag, cah) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ba, bb, bc) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, ba), new_asAs(new_esEs5(yvy4001, yvy3001, bb), new_esEs4(yvy4002, yvy3002, bc))), ba, bb, bc) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], he)) -> new_esEs17(yvy891, yvy901, he) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, eeh)) -> new_esEs23(yvy4000, yvy3000, eeh) new_ltEs5(Right(yvy890), Right(yvy900), bec, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, cbc, efb) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, edd), ede)) -> new_esEs22(yvy4001, yvy3001, edd, ede) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bec, app(app(app(ty_@3, bee), bef), beg)) -> new_ltEs12(yvy890, yvy900, bee, bef, beg) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bda), bdb) -> new_ltEs11(yvy890, yvy900, bda) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, cg) -> new_esEs12(new_compare7(yvy152, yvy155, cg), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs13(yvy890, yvy900, bha, bhb, bhc) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs13(yvy4000, yvy3000, efe, eff, efg) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, dbh) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, fdf), fdg)) -> new_esEs19(yvy40000, yvy30000, fdf, fdg) new_compare7(Nothing, Nothing, bd) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bec, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, efc)) -> new_ltEs9(yvy103, yvy104, efc) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, cfa, cfb, cfc) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, cfa, cfb, cfc) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, bhe), bhf)) -> new_esEs22(yvy890, yvy900, bhe, bhf) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, dbe, dbf) -> LT new_lt6(yvy152, yvy155, ca) -> new_esEs12(new_compare0(yvy152, yvy155, ca), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_esEs13(yvy4000, yvy3000, ebe, ebf, ebg) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, ecb), ecc)) -> new_esEs22(yvy4000, yvy3000, ecb, ecc) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, bha), bhb), bhc)) -> new_lt16(yvy890, yvy900, bha, bhb, bhc) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bdb) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, efa)) -> new_esEs26(yvy4000, yvy3000, efa) new_ltEs20(yvy891, yvy901, app(app(ty_@2, bge), bgf)) -> new_ltEs17(yvy891, yvy901, bge, bgf) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), ddb, dbh) -> False new_esEs22(Right(yvy40000), Left(yvy30000), ddb, dbh) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, dee), bdb) -> new_ltEs9(yvy890, yvy900, dee) new_compare0(:(yvy4000, yvy4001), [], h) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, bhg), bhh)) -> new_lt5(yvy890, yvy900, bhg, bhh) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bdb) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, bhe), bhf)) -> new_lt19(yvy890, yvy900, bhe, bhf) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, cgg)) -> new_esEs23(yvy40002, yvy30002, cgg) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, hc), hd)) -> new_ltEs17(yvy892, yvy902, hc, hd) new_compare30(Left(yvy4000), Left(yvy3000), be, bf) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, be), be, bf) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], cdg)) -> new_lt6(yvy165, yvy167, cdg) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, ced)) -> new_esEs23(yvy165, yvy167, ced) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, eea), eeb), eec)) -> new_esEs13(yvy4000, yvy3000, eea, eeb, eec) new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ece)) -> new_esEs26(yvy4000, yvy3000, ece) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, dda), dbh) -> new_esEs26(yvy40000, yvy30000, dda) new_primCompAux0(yvy400, yvy300, yvy51, eab) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, eab)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, eba)) -> new_ltEs9(yvy890, yvy900, eba) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fg), fh)) -> new_esEs19(yvy153, yvy156, fg, fh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, gb), gc), hf)) -> new_ltEs12(yvy89, yvy90, gb, gc, hf) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), h) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, h), h) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, ege)) -> new_esEs26(yvy4000, yvy3000, ege) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, ebc)) -> new_esEs26(yvy890, yvy900, ebc) new_lt21(yvy165, yvy167, app(ty_Ratio, ffg)) -> new_lt10(yvy165, yvy167, ffg) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, bbf), bbg)) -> new_lt5(yvy890, yvy900, bbf, bbg) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs12(yvy103, yvy104, cbe, cbf, cbg) new_lt12(yvy890, yvy900, app(app(ty_Either, bbd), bbe)) -> new_lt19(yvy890, yvy900, bbd, bbe) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, cdb)) -> new_ltEs13(yvy166, yvy168, cdb) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), bd) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, bd), bd) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, che), chf)) -> new_esEs19(yvy40001, yvy30001, che, chf) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], faf)) -> new_esEs17(yvy40001, yvy30001, faf) new_compare7(Nothing, Just(yvy3000), bd) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, dca), dcb), dcc), dbh) -> new_esEs13(yvy40000, yvy30000, dca, dcb, dcc) new_ltEs18(yvy96, yvy97, app(ty_Ratio, dgg)) -> new_ltEs9(yvy96, yvy97, dgg) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, de, cb, cc) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs12(yvy154, yvy157, dg, dh, ea) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs32(yvy891, yvy901, app(ty_Ratio, eaf)) -> new_esEs26(yvy891, yvy901, eaf) new_ltEs21(yvy103, yvy104, app(app(ty_Either, cca), ccb)) -> new_ltEs5(yvy103, yvy104, cca, ccb) new_esEs33(yvy890, yvy900, app(ty_Ratio, eag)) -> new_esEs26(yvy890, yvy900, eag) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, dbe, dbf) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, dbe, dbf) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, bhd)) -> new_lt4(yvy890, yvy900, bhd) new_compare16(yvy189, yvy190, False, dfa) -> GT new_compare24(yvy96, yvy97, False, dgf, cab) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, dgf), dgf, cab) new_ltEs22(yvy166, yvy168, app(app(ty_Either, cdc), cdd)) -> new_ltEs5(yvy166, yvy168, cdc, cdd) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dcd), dce), dbh) -> new_esEs19(yvy40000, yvy30000, dcd, dce) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, fbf)) -> new_esEs23(yvy40001, yvy30001, fbf) new_lt23(yvy153, yvy156, app(app(ty_Either, fd), ff)) -> new_lt19(yvy153, yvy156, fd, ff) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs12(yvy166, yvy168, ccg, cch, cda) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), ddb, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fg), fh)) -> new_lt5(yvy153, yvy156, fg, fh) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), ddb, app(app(ty_@2, ddg), ddh)) -> new_esEs19(yvy40000, yvy30000, ddg, ddh) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, eae)) -> new_ltEs9(yvy892, yvy902, eae) new_ltEs5(Right(yvy890), Right(yvy900), bec, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, cba), cbb)) -> new_ltEs17(yvy96, yvy97, cba, cbb) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], ebd)) -> new_esEs17(yvy4000, yvy3000, ebd) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, eah)) -> new_ltEs13(yvy89, yvy90, eah) new_esEs34(yvy890, yvy900, app(ty_[], bgg)) -> new_esEs17(yvy890, yvy900, bgg) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, ffe)) -> new_esEs26(yvy4000, yvy3000, ffe) new_compare110(yvy205, yvy206, False, fac, fad) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, hg), hh), baa)) -> new_esEs13(yvy891, yvy901, hg, hh, baa) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bdb) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], bgg)) -> new_lt6(yvy890, yvy900, bgg) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, deg, deh) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, cfa, cfb, cfc) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, fcf), fcg)) -> new_esEs22(yvy40000, yvy30000, fcf, fcg) new_ltEs23(yvy154, yvy157, app(ty_Maybe, eb)) -> new_ltEs13(yvy154, yvy157, eb) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], dfc) -> False new_esEs17([], :(yvy30000, yvy30001), dfc) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, dc), dd)) -> new_lt5(yvy152, yvy155, dc, dd) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, da), db)) -> new_lt19(yvy152, yvy155, da, db) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, edg)) -> new_esEs26(yvy4001, yvy3001, edg) new_ltEs21(yvy103, yvy104, app(ty_[], cbd)) -> new_ltEs11(yvy103, yvy104, cbd) new_ltEs13(Nothing, Just(yvy900), eah) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, ehb), ehc)) -> new_esEs19(yvy4002, yvy3002, ehb, ehc) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, fee), fef), feg)) -> new_esEs13(yvy4000, yvy3000, fee, fef, feg) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, fch)) -> new_esEs23(yvy40000, yvy30000, fch) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs23(Nothing, Nothing, x0) new_esEs16(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs12(EQ, EQ) new_esEs10(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_compare28(EQ, LT) new_compare28(LT, EQ) new_lt19(x0, x1, x2, x3) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Float) new_fsEs(x0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, True, x2, x3) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(ty_[], x2)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Int) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_esEs23(Nothing, Just(x0), x1) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_[], x2)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs7(x0, x1, app(ty_[], x2)) new_primCmpNat0(Succ(x0), Zero) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Char) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs39(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare28(GT, GT) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_ltEs24(x0, x1, ty_Char) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(LT, LT) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs10(x0, x1, ty_Double) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs22(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, app(ty_Maybe, x2)) new_compare212(x0, x1, True, x2) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Integer) new_lt14(x0, x1) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_lt21(x0, x1, ty_Double) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Ordering) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Zero, Succ(x0)) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs22(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0([], [], x0) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_lt20(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare7(Nothing, Nothing, x0) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Integer) new_compare110(x0, x1, False, x2, x3) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Char) new_compare16(x0, x1, True, x2) new_compare25(x0, x1, ty_Char) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs14(x0, x1, ty_Bool) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs17([], :(x0, x1), x2) new_esEs18(False, True) new_esEs18(True, False) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare19(False, False) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs9(x0, x1, ty_Bool) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs5(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_ltEs13(Nothing, Just(x0), x1) new_esEs35(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Int) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare212(x0, x1, False, x2) new_lt9(x0, x1) new_esEs4(x0, x1, ty_@0) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_compare13(x0, x1, x2, x3, False, x4, x5) new_ltEs21(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs24(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Float) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs28(Integer(x0), Integer(x1)) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs32(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCompAux00(x0, EQ) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs15(x0, x1, ty_Double) new_esEs16(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs39(x0, x1, ty_Double) new_compare14(x0, x1, False, x2, x3) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Int) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs17([], [], x0) new_esEs5(x0, x1, ty_Bool) new_lt15(x0, x1) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_Bool) new_compare24(x0, x1, True, x2, x3) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(:(x0, x1), [], x2) new_asAs(False, x0) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs33(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Float) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs23(Just(x0), Nothing, x1) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Zero, Zero) new_lt11(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(False, x0) new_ltEs14(EQ, EQ) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_[], x2)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs34(x0, x1, ty_Integer) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_compare16(x0, x1, False, x2) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, ty_Double) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Float) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs14(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), ty_Double) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs7(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Int) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_compare14(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_esEs14(x0, x1, ty_Double) new_compare6(x0, x1) new_compare24(x0, x1, False, x2, x3) new_lt13(x0, x1) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Double) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs30(x0, x1, ty_Int) new_compare211(x0, x1, True, x2, x3) new_ltEs21(x0, x1, ty_@0) new_compare7(Nothing, Just(x0), x1) new_esEs5(x0, x1, app(ty_[], x2)) new_not(True) new_esEs8(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs21(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs22(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_primPlusNat1(Zero, x0) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_ltEs15(x0, x1) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1) new_esEs18(False, False) new_esEs34(x0, x1, ty_Float) new_ltEs13(Just(x0), Nothing, x1) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs23(Just(x0), Just(x1), ty_@0) new_compare25(x0, x1, ty_Int) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_ltEs19(x0, x1, ty_Char) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt11(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_compare0([], :(x0, x1), x2) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, LT) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Integer) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Double) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs19(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Integer) new_ltEs11(x0, x1, x2) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_asAs(True, x0) new_esEs11(x0, x1, app(ty_[], x2)) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs4(x0, x1) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs17(:(x0, x1), [], x2) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_compare28(LT, LT) new_esEs25(x0, x1) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_ltEs10(x0, x1) new_esEs36(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare7(Just(x0), Nothing, x1) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs14(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Bool) new_lt5(x0, x1, x2, x3) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Char) new_ltEs9(x0, x1, x2) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_ltEs22(x0, x1, ty_Ordering) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Bool) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_lt10(x0, x1, x2) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_not(False) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_esEs36(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Int) new_compare211(x0, x1, False, x2, x3) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_primCmpNat0(Zero, Succ(x0)) new_ltEs13(Nothing, Nothing, x0) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs16(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux0(x0, x1, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_lt11(x0, x1, ty_Char) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs18(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Int) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Left(x0), Right(x1), x2, x3) new_ltEs5(Right(x0), Left(x1), x2, x3) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs15(x0, x1, ty_Float) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, x2) new_lt21(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Char) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs4(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_lt11(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Integer) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare7(Just(x0), Just(x1), x2) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Float) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_lt16(x0, x1, x2, x3, x4) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(True, False) new_compare19(False, True) new_esEs15(x0, x1, ty_Int) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs23(Just(x0), Just(x1), ty_Integer) new_esEs22(Left(x0), Left(x1), ty_Char, x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (70) 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_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, app(app(app(ty_@3, cd), ce), cf), cb, cc) -> new_compare1(yvy152, yvy155, cd, ce, cf) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_lt0(yvy152, yvy155, cd, ce, cf) -> new_compare1(yvy152, yvy155, cd, ce, cf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, cb, app(ty_[], df)) -> new_ltEs(yvy154, yvy157, df) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, cb, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs0(yvy154, yvy157, dg, dh, ea) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, gc, app(ty_[], gd)) -> new_ltEs(yvy892, yvy902, gd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, gc, app(app(app(ty_@3, ge), gf), gg)) -> new_ltEs0(yvy892, yvy902, ge, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt(yvy152, yvy155, ca) -> new_compare(yvy152, yvy155, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs1(Just(yvy890), Just(yvy900), app(ty_[], bbh)) -> new_ltEs(yvy890, yvy900, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(yvy890), Just(yvy900), app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs0(yvy890, yvy900, bca, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, app(ty_Maybe, fc), cc) -> new_lt1(yvy153, yvy156, fc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare3(Just(yvy4000), Just(yvy3000), bd) -> new_compare20(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, bd), bd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_primCompAux(Just(yvy4000), Just(yvy3000), yvy51, app(ty_Maybe, bd)) -> new_compare20(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, bd), bd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_lt2(yvy152, yvy155, da, db) -> new_compare4(yvy152, yvy155, da, db) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_lt1(yvy152, yvy155, cg) -> new_compare3(yvy152, yvy155, cg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), bfe, app(ty_[], bff)) -> new_ltEs(yvy891, yvy901, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), bfe, app(app(app(ty_@3, bfg), bfh), bga)) -> new_ltEs0(yvy891, yvy901, bfg, bfh, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), app(ty_Maybe, bhd), bgh) -> new_lt1(yvy890, yvy900, bhd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, cb, app(app(ty_Either, ec), ed)) -> new_ltEs2(yvy154, yvy157, ec, ed) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, gc, app(app(ty_Either, ha), hb)) -> new_ltEs2(yvy892, yvy902, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(Just(yvy890), Just(yvy900), app(app(ty_Either, bce), bcf)) -> new_ltEs2(yvy890, yvy900, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), bfe, app(app(ty_Either, bgc), bgd)) -> new_ltEs2(yvy891, yvy901, bgc, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(yvy89, yvy90, ga) -> new_compare(yvy89, yvy90, ga) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt3(yvy152, yvy155, dc, dd) -> new_compare5(yvy152, yvy155, dc, dd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, cb, app(app(ty_@2, ee), ef)) -> new_ltEs3(yvy154, yvy157, ee, ef) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, gc, app(app(ty_@2, hc), hd)) -> new_ltEs3(yvy892, yvy902, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(Just(yvy890), Just(yvy900), app(app(ty_@2, bcg), bch)) -> new_ltEs3(yvy890, yvy900, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(yvy890), Just(yvy900), app(ty_Maybe, bcd)) -> new_ltEs1(yvy890, yvy900, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), bfe, app(app(ty_@2, bge), bgf)) -> new_ltEs3(yvy891, yvy901, bge, bgf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *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_compare21(yvy96, yvy97, False, app(ty_[], caa), cab) -> new_ltEs(yvy96, yvy97, caa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(yvy96, yvy97, False, app(app(app(ty_@3, cac), cad), cae), cab) -> new_ltEs0(yvy96, yvy97, cac, cad, cae) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(yvy96, yvy97, False, app(app(ty_Either, cag), cah), cab) -> new_ltEs2(yvy96, yvy97, cag, cah) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(yvy96, yvy97, False, app(app(ty_@2, cba), cbb), cab) -> new_ltEs3(yvy96, yvy97, cba, cbb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(yvy96, yvy97, False, app(ty_Maybe, caf), cab) -> new_ltEs1(yvy96, yvy97, caf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare4(Left(yvy4000), Left(yvy3000), be, bf) -> new_compare21(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, be), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_primCompAux(Left(yvy4000), Left(yvy3000), yvy51, app(app(ty_Either, be), bf)) -> new_compare21(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, be), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare4(Right(yvy4000), Right(yvy3000), be, bf) -> new_compare22(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bf), be, bf) 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, be), bf)) -> new_compare22(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bf), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, app(app(ty_@2, fg), fh), cc) -> new_lt3(yvy153, yvy156, fg, fh) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare5(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bg, bh) -> new_compare23(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, bg), new_esEs10(yvy4001, yvy3001, bh)), bg, bh) 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, bg), bh)) -> new_compare23(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, bg), new_esEs10(yvy4001, yvy3001, bh)), bg, bh) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 4 > 6, 4 > 7 *new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), app(app(ty_@2, bhg), bhh), bgh) -> new_lt3(yvy890, yvy900, bhg, bhh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare22(yvy103, yvy104, False, cbc, app(ty_[], cbd)) -> new_ltEs(yvy103, yvy104, cbd) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare22(yvy103, yvy104, False, cbc, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs0(yvy103, yvy104, cbe, cbf, cbg) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(yvy103, yvy104, False, cbc, app(app(ty_Either, cca), ccb)) -> new_ltEs2(yvy103, yvy104, cca, ccb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare22(yvy103, yvy104, False, cbc, app(app(ty_@2, ccc), ccd)) -> new_ltEs3(yvy103, yvy104, ccc, ccd) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare22(yvy103, yvy104, False, cbc, app(ty_Maybe, cbh)) -> new_ltEs1(yvy103, yvy104, cbh) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, cb, app(ty_Maybe, eb)) -> new_ltEs1(yvy154, yvy157, eb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, gc, app(ty_Maybe, gh)) -> new_ltEs1(yvy892, yvy902, gh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), bfe, app(ty_Maybe, bgb)) -> new_ltEs1(yvy891, yvy901, bgb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, app(app(ty_Either, fd), ff), cc) -> new_lt2(yvy153, yvy156, fd, ff) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), app(app(ty_Either, bhe), bhf), bgh) -> new_lt2(yvy890, yvy900, bhe, bhf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, app(app(app(ty_@3, eh), fa), fb), cc) -> new_lt0(yvy153, yvy156, eh, fa, fb) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ba, bb, bc) -> new_compare2(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, ba), new_asAs(new_esEs5(yvy4001, yvy3001, bb), new_esEs4(yvy4002, yvy3002, bc))), ba, bb, bc) 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, ba), bb), bc)) -> new_compare2(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, ba), new_asAs(new_esEs5(yvy4001, yvy3001, bb), new_esEs4(yvy4002, yvy3002, bc))), ba, bb, bc) 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_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), app(app(app(ty_@3, bha), bhb), bhc), bgh) -> new_lt0(yvy890, yvy900, bha, bhb, bhc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@2(yvy890, yvy891), @2(yvy900, yvy901), app(ty_[], bgg), bgh) -> new_lt(yvy890, yvy900, bgg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare23(yvy165, yvy166, yvy167, yvy168, False, cce, app(ty_[], ccf)) -> new_ltEs(yvy166, yvy168, ccf) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare23(yvy165, yvy166, yvy167, yvy168, False, cce, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs0(yvy166, yvy168, ccg, cch, cda) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare23(yvy165, yvy166, yvy167, yvy168, False, app(ty_Maybe, ced), cdh) -> new_lt1(yvy165, yvy167, ced) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare23(yvy165, yvy166, yvy167, yvy168, False, cce, app(app(ty_Either, cdc), cdd)) -> new_ltEs2(yvy166, yvy168, cdc, cdd) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare23(yvy165, yvy166, yvy167, yvy168, False, cce, app(app(ty_@2, cde), cdf)) -> new_ltEs3(yvy166, yvy168, cde, cdf) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare23(yvy165, yvy166, yvy167, yvy168, False, app(app(ty_@2, ceg), ceh), cdh) -> new_lt3(yvy165, yvy167, ceg, ceh) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare23(yvy165, yvy166, yvy167, yvy168, False, cce, app(ty_Maybe, cdb)) -> new_ltEs1(yvy166, yvy168, cdb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare23(yvy165, yvy166, yvy167, yvy168, False, app(app(ty_Either, cee), cef), cdh) -> new_lt2(yvy165, yvy167, cee, cef) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare23(yvy165, yvy166, yvy167, yvy168, False, app(app(app(ty_@3, cea), ceb), cec), cdh) -> new_lt0(yvy165, yvy167, cea, ceb, cec) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare23(yvy165, yvy166, yvy167, yvy168, False, app(ty_[], cdg), cdh) -> new_lt(yvy165, yvy167, cdg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, de, app(ty_[], eg), cc) -> new_lt(yvy153, yvy156, eg) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, app(ty_[], ca), cb, cc) -> new_compare(yvy152, yvy155, ca) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *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_compare20(yvy89, yvy90, False, app(ty_[], ga)) -> new_compare(yvy89, yvy90, ga) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, app(ty_Maybe, cg), cb, cc) -> new_compare3(yvy152, yvy155, cg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, app(app(ty_Either, da), db), cb, cc) -> new_compare4(yvy152, yvy155, da, db) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare2(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, app(app(ty_@2, dc), dd), cb, cc) -> new_compare5(yvy152, yvy155, dc, dd) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_ltEs2(Left(yvy890), Left(yvy900), app(ty_[], bda), bdb) -> new_ltEs(yvy890, yvy900, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(yvy890), Right(yvy900), bec, app(ty_[], bed)) -> new_ltEs(yvy890, yvy900, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bdc), bdd), bde), bdb) -> new_ltEs0(yvy890, yvy900, bdc, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(Right(yvy890), Right(yvy900), bec, app(app(app(ty_@3, bee), bef), beg)) -> new_ltEs0(yvy890, yvy900, bee, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Right(yvy890), Right(yvy900), bec, app(app(ty_Either, bfa), bfb)) -> new_ltEs2(yvy890, yvy900, bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(yvy890), Left(yvy900), app(app(ty_Either, bdg), bdh), bdb) -> new_ltEs2(yvy890, yvy900, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Right(yvy890), Right(yvy900), bec, app(app(ty_@2, bfc), bfd)) -> new_ltEs3(yvy890, yvy900, bfc, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(yvy890), Left(yvy900), app(app(ty_@2, bea), beb), bdb) -> new_ltEs3(yvy890, yvy900, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Right(yvy890), Right(yvy900), bec, app(ty_Maybe, beh)) -> new_ltEs1(yvy890, yvy900, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(yvy890), Left(yvy900), app(ty_Maybe, bdf), bdb) -> new_ltEs1(yvy890, yvy900, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(Just(yvy890), Just(yvy900), False, app(ty_Maybe, app(ty_[], bbh))) -> new_ltEs(yvy890, yvy900, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(yvy890), Left(yvy900), False, app(app(ty_Either, app(ty_[], bda)), bdb)) -> new_ltEs(yvy890, yvy900, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, bfe), app(ty_[], bff))) -> new_ltEs(yvy891, yvy901, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), gc), app(ty_[], gd))) -> new_ltEs(yvy892, yvy902, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(yvy890), Right(yvy900), False, app(app(ty_Either, bec), app(ty_[], bed))) -> new_ltEs(yvy890, yvy900, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, app(ty_Maybe, bab), hf) -> new_lt1(yvy891, yvy901, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), app(ty_Maybe, bbc), gc, hf) -> new_lt1(yvy890, yvy900, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), app(app(ty_@2, bbf), bbg), gc, hf) -> new_lt3(yvy890, yvy900, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, app(app(ty_@2, bae), baf), hf) -> new_lt3(yvy891, yvy901, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, app(app(ty_Either, bac), bad), hf) -> new_lt2(yvy891, yvy901, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), app(app(ty_Either, bbd), bbe), gc, hf) -> new_lt2(yvy890, yvy900, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), app(app(app(ty_@3, bah), bba), bbb), gc, hf) -> new_lt0(yvy890, yvy900, bah, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, app(app(app(ty_@3, hg), hh), baa), hf) -> new_lt0(yvy891, yvy901, hg, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), app(ty_[], bag), gc, hf) -> new_lt(yvy890, yvy900, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), gb, app(ty_[], he), hf) -> new_lt(yvy891, yvy901, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), gc), app(app(app(ty_@3, ge), gf), gg))) -> new_ltEs0(yvy892, yvy902, ge, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Left(yvy890), Left(yvy900), False, app(app(ty_Either, app(app(app(ty_@3, bdc), bdd), bde)), bdb)) -> new_ltEs0(yvy890, yvy900, bdc, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(yvy890), Right(yvy900), False, app(app(ty_Either, bec), app(app(app(ty_@3, bee), bef), beg))) -> new_ltEs0(yvy890, yvy900, bee, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, bfe), app(app(app(ty_@3, bfg), bfh), bga))) -> new_ltEs0(yvy891, yvy901, bfg, bfh, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(yvy890), Just(yvy900), False, app(ty_Maybe, app(app(app(ty_@3, bca), bcb), bcc))) -> new_ltEs0(yvy890, yvy900, bca, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, app(ty_Maybe, bbc)), gc), hf)) -> new_lt1(yvy890, yvy900, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), app(ty_Maybe, bab)), hf)) -> new_lt1(yvy891, yvy901, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, app(ty_Maybe, bhd)), bgh)) -> new_lt1(yvy890, yvy900, bhd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(yvy890), Right(yvy900), False, app(app(ty_Either, bec), app(app(ty_Either, bfa), bfb))) -> new_ltEs2(yvy890, yvy900, bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, bfe), app(app(ty_Either, bgc), bgd))) -> new_ltEs2(yvy891, yvy901, bgc, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), gc), app(app(ty_Either, ha), hb))) -> new_ltEs2(yvy892, yvy902, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(yvy890), Just(yvy900), False, app(ty_Maybe, app(app(ty_Either, bce), bcf))) -> new_ltEs2(yvy890, yvy900, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(yvy890), Left(yvy900), False, app(app(ty_Either, app(app(ty_Either, bdg), bdh)), bdb)) -> new_ltEs2(yvy890, yvy900, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), gc), app(app(ty_@2, hc), hd))) -> new_ltEs3(yvy892, yvy902, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, bfe), app(app(ty_@2, bge), bgf))) -> new_ltEs3(yvy891, yvy901, bge, bgf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(yvy890), Right(yvy900), False, app(app(ty_Either, bec), app(app(ty_@2, bfc), bfd))) -> new_ltEs3(yvy890, yvy900, bfc, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(yvy890), Just(yvy900), False, app(ty_Maybe, app(app(ty_@2, bcg), bch))) -> new_ltEs3(yvy890, yvy900, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(yvy890), Left(yvy900), False, app(app(ty_Either, app(app(ty_@2, bea), beb)), bdb)) -> new_ltEs3(yvy890, yvy900, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, app(app(ty_@2, bbf), bbg)), gc), hf)) -> new_lt3(yvy890, yvy900, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), app(app(ty_@2, bae), baf)), hf)) -> new_lt3(yvy891, yvy901, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, app(app(ty_@2, bhg), bhh)), bgh)) -> new_lt3(yvy890, yvy900, bhg, bhh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(yvy890), Right(yvy900), False, app(app(ty_Either, bec), app(ty_Maybe, beh))) -> new_ltEs1(yvy890, yvy900, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, bfe), app(ty_Maybe, bgb))) -> new_ltEs1(yvy891, yvy901, bgb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), gc), app(ty_Maybe, gh))) -> new_ltEs1(yvy892, yvy902, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(yvy890), Just(yvy900), False, app(ty_Maybe, app(ty_Maybe, bcd))) -> new_ltEs1(yvy890, yvy900, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(yvy890), Left(yvy900), False, app(app(ty_Either, app(ty_Maybe, bdf)), bdb)) -> new_ltEs1(yvy890, yvy900, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, app(app(ty_Either, bbd), bbe)), gc), hf)) -> new_lt2(yvy890, yvy900, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, app(app(ty_Either, bhe), bhf)), bgh)) -> new_lt2(yvy890, yvy900, bhe, bhf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), app(app(ty_Either, bac), bad)), hf)) -> new_lt2(yvy891, yvy901, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, app(app(app(ty_@3, bha), bhb), bhc)), bgh)) -> new_lt0(yvy890, yvy900, bha, bhb, bhc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), app(app(app(ty_@3, hg), hh), baa)), hf)) -> new_lt0(yvy891, yvy901, hg, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, app(app(app(ty_@3, bah), bba), bbb)), gc), hf)) -> new_lt0(yvy890, yvy900, bah, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(yvy890, yvy891), @2(yvy900, yvy901), False, app(app(ty_@2, app(ty_[], bgg)), bgh)) -> new_lt(yvy890, yvy900, bgg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, app(ty_[], bag)), gc), hf)) -> new_lt(yvy890, yvy900, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), False, app(app(app(ty_@3, gb), app(ty_[], he)), hf)) -> new_lt(yvy891, yvy901, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (71) YES ---------------------------------------- (72) 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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbf), bbg), bbh), bbc) -> new_ltEs12(yvy890, yvy900, bbf, bbg, bbh) new_ltEs20(yvy891, yvy901, app(ty_[], cgh)) -> new_ltEs11(yvy891, yvy901, cgh) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_lt5(yvy891, yvy901, cdf, cdg) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Maybe, bdd)) -> new_ltEs13(yvy890, yvy900, bdd) new_lt20(yvy890, yvy900, app(ty_Ratio, daa)) -> new_lt10(yvy890, yvy900, daa) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cgc), cgd)) -> new_ltEs17(yvy890, yvy900, cgc, cgd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_lt19(yvy891, yvy901, cdd, cde) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fah, fba, fbb) -> new_esEs12(new_compare27(yvy152, yvy155, fah, fba, fbb), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_esEs19(yvy152, yvy155, bf, bg) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bca), bbc) -> new_ltEs13(yvy890, yvy900, bca) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cfh)) -> new_ltEs13(yvy890, yvy900, cfh) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eee)) -> new_esEs17(yvy40000, yvy30000, eee) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bea, beb) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebc, ebd) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebc), new_esEs35(yvy40001, yvy30001, ebd)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], ge), gf) -> new_esEs17(yvy40000, yvy30000, ge) new_compare25(yvy400, yvy300, app(ty_Ratio, bhf)) -> new_compare26(yvy400, yvy300, bhf) new_lt19(yvy152, yvy155, dfc, dfd) -> new_esEs12(new_compare30(yvy152, yvy155, dfc, dfd), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bed)) -> new_lt6(yvy152, yvy155, bed) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hf), gf) -> new_esEs23(yvy40000, yvy30000, hf) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fcf)) -> new_esEs17(yvy153, yvy156, fcf) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_lt16(yvy165, yvy167, ehe, ehf, ehg) new_esEs39(yvy152, yvy155, app(ty_Ratio, cah)) -> new_esEs26(yvy152, yvy155, cah) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_lt16(yvy891, yvy901, cch, cda, cdb) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_esEs23(yvy153, yvy156, fdb) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs13(yvy4001, yvy3001, dbd, dbe, dbf) new_lt21(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_lt19(yvy165, yvy167, faa, fab) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], beg)) -> new_esEs17(yvy4000, yvy3000, beg) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bcf, bbc) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gf) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbe)) -> new_ltEs11(yvy892, yvy902, cbe) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gf) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cea)) -> new_esEs17(yvy890, yvy900, cea) new_lt21(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_lt5(yvy165, yvy167, fac, fad) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, bc, bd, be) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_lt4(yvy153, yvy156, fdb) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_esEs22(yvy165, yvy167, faa, fab) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fca), fcb)) -> new_ltEs5(yvy154, yvy157, fca, fcb) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs13(yvy40000, yvy30000, bfa, bfb, bfc) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs13(yvy4002, yvy3002, dgh, dha, dhb) new_esEs23(Nothing, Just(yvy30000), ebe) -> False new_esEs23(Just(yvy40000), Nothing, ebe) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gf) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cgg)) -> new_ltEs9(yvy891, yvy901, cgg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_[], baa)) -> new_esEs17(yvy40000, yvy30000, baa) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cge, cgf) -> new_pePe(new_lt20(yvy890, yvy900, cge), new_asAs(new_esEs34(yvy890, yvy900, cge), new_ltEs20(yvy891, yvy901, cgf))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, de)) -> new_esEs26(yvy40002, yvy30002, de) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_esEs22(yvy153, yvy156, fdc, fdd) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bec) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], ccg)) -> new_lt6(yvy891, yvy901, ccg) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbc) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fec), fed)) -> new_esEs19(yvy4000, yvy3000, fec, fed) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebe) -> True new_lt12(yvy890, yvy900, app(ty_[], cea)) -> new_lt6(yvy890, yvy900, cea) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, daf)) -> new_esEs23(yvy890, yvy900, daf) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfe)) -> new_esEs17(yvy4000, yvy3000, dfe) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bga)) -> new_esEs26(yvy40000, yvy30000, bga) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], bef)) -> new_ltEs11(yvy89, yvy90, bef) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bge)) -> new_ltEs11(yvy96, yvy97, bge) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, fg), fh)) -> new_esEs22(yvy40000, yvy30000, fg, fh) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbc) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fae, faf, fag) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fae), new_asAs(new_esEs39(yvy152, yvy155, fae), new_pePe(new_lt23(yvy153, yvy156, faf), new_asAs(new_esEs38(yvy153, yvy156, faf), new_ltEs23(yvy154, yvy157, fag)))), fae, faf, fag) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcb), bcc), bbc) -> new_ltEs5(yvy890, yvy900, bcb, bcc) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, cee)) -> new_esEs23(yvy890, yvy900, cee) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cac)) -> new_compare7(yvy400, yvy300, cac) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edb)) -> new_esEs26(yvy40001, yvy30001, edb) new_lt22(yvy152, yvy155, app(ty_Maybe, bb)) -> new_lt4(yvy152, yvy155, bb) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, bef) -> new_fsEs(new_compare0(yvy89, yvy90, bef)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) new_compare30(Right(yvy4000), Right(yvy3000), cad, cae) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cae), cad, cae) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_lt16(yvy152, yvy155, fah, fba, fbb) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, cha), chb), chc)) -> new_ltEs12(yvy891, yvy901, cha, chb, chc) new_compare110(yvy205, yvy206, True, ebf, ebg) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehd)) -> new_esEs17(yvy165, yvy167, ehd) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, cg), da)) -> new_esEs19(yvy40002, yvy30002, cg, da) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), bee) -> new_asAs(new_esEs30(yvy40000, yvy30000, bee), new_esEs29(yvy40001, yvy30001, bee)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efe)) -> new_esEs23(yvy40000, yvy30000, efe) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dga), dgb)) -> new_esEs19(yvy4000, yvy3000, dga, dgb) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bfd), bfe)) -> new_esEs19(yvy40000, yvy30000, bfd, bfe) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Maybe, bba)) -> new_esEs23(yvy40000, yvy30000, bba) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efc), efd)) -> new_esEs22(yvy40000, yvy30000, efc, efd) new_esEs33(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_esEs22(yvy890, yvy900, cef, ceg) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_esEs13(yvy40001, yvy30001, ecb, ecc, ecd) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs12(yvy892, yvy902, cbf, cbg, cbh) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fcf)) -> new_lt6(yvy153, yvy156, fcf) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cba, cbb, cbc) -> new_pePe(new_lt12(yvy890, yvy900, cba), new_asAs(new_esEs33(yvy890, yvy900, cba), new_pePe(new_lt11(yvy891, yvy901, cbb), new_asAs(new_esEs32(yvy891, yvy901, cbb), new_ltEs19(yvy892, yvy902, cbc))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bh, ca, cb) -> new_asAs(new_esEs16(yvy40000, yvy30000, bh), new_asAs(new_esEs15(yvy40001, yvy30001, ca), new_esEs14(yvy40002, yvy30002, cb))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, gc, gd) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chd)) -> new_ltEs13(yvy891, yvy901, chd) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], eh)) -> new_esEs17(yvy40000, yvy30000, eh) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dgc), dgd)) -> new_esEs22(yvy4000, yvy3000, dgc, dgd) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cfd)) -> new_ltEs11(yvy890, yvy900, cfd) new_esEs39(yvy152, yvy155, app(ty_[], bed)) -> new_esEs17(yvy152, yvy155, bed) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, ga)) -> new_esEs23(yvy40000, yvy30000, ga) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_[], bch)) -> new_ltEs11(yvy890, yvy900, bch) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Ratio, bcg)) -> new_ltEs9(yvy890, yvy900, bcg) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_lt16(yvy890, yvy900, ceb, cec, ced) new_esEs39(yvy152, yvy155, app(ty_Maybe, bb)) -> new_esEs23(yvy152, yvy155, bb) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eed)) -> new_esEs26(yvy40000, yvy30000, eed) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], beg) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs12(yvy890, yvy900, cfe, cff, cfg) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_esEs22(yvy891, yvy901, cdd, cde) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eag), eah)) -> new_esEs22(yvy4001, yvy3001, eag, eah) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hd), he), gf) -> new_esEs22(yvy40000, yvy30000, hd, he) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs12(yvy96, yvy97, bgf, bgg, bgh) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cga), cgb)) -> new_ltEs5(yvy890, yvy900, cga, cgb) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), caf, cag) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, caf), new_esEs10(yvy4001, yvy3001, cag)), caf, cag) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbc)) -> new_ltEs9(yvy154, yvy157, fbc) new_lt23(yvy153, yvy156, app(ty_Ratio, fce)) -> new_lt10(yvy153, yvy156, fce) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbc) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs13(yvy40000, yvy30000, edd, ede, edf) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, dhh)) -> new_esEs26(yvy4002, yvy3002, dhh) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_esEs23(yvy891, yvy901, cdc) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fgc) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, eha), ehb)) -> new_ltEs17(yvy166, yvy168, eha, ehb) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eba)) -> new_esEs23(yvy4001, yvy3001, eba) new_compare25(yvy400, yvy300, app(app(app(ty_@3, bhh), caa), cab)) -> new_compare27(yvy400, yvy300, bhh, caa, cab) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs13(yvy40000, yvy30000, fa, fb, fc) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_esEs13(yvy152, yvy155, fah, fba, fbb) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dda), ddb)) -> new_esEs19(yvy4000, yvy3000, dda, ddb) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs13(yvy40000, yvy30000, eef, eeg, eeh) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bha)) -> new_ltEs13(yvy96, yvy97, bha) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ece), ecf)) -> new_esEs19(yvy40001, yvy30001, ece, ecf) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fcc), fcd)) -> new_ltEs17(yvy154, yvy157, fcc, fcd) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs13(yvy153, yvy156, fcg, fch, fda) new_lt5(yvy152, yvy155, bf, bg) -> new_esEs12(new_compare8(yvy152, yvy155, bf, bg), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs13(yvy40001, yvy30001, dg, dh, ea) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, cee)) -> new_lt4(yvy890, yvy900, cee) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dbg), dbh)) -> new_esEs19(yvy4001, yvy3001, dbg, dbh) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs13(yvy40002, yvy30002, cd, ce, cf) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dge)) -> new_esEs23(yvy4000, yvy3000, dge) new_esEs33(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_esEs19(yvy890, yvy900, ceh, cfa) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffe), fff)) -> new_esEs19(yvy4000, yvy3000, ffe, fff) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy89, yvy90, cge, cgf) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs13(yvy165, yvy167, ehe, ehf, ehg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Ratio, bbb)) -> new_esEs26(yvy40000, yvy30000, bbb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gf) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gb)) -> new_esEs26(yvy40000, yvy30000, gb) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), beg) -> new_asAs(new_esEs31(yvy40000, yvy30000, beg), new_esEs17(yvy40001, yvy30001, beg)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, efg, efh) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gf) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebe)) -> new_esEs23(yvy4000, yvy3000, ebe) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ebh) -> new_fsEs(new_compare26(yvy89, yvy90, ebh)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, ddg, ddh) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, ddh), ddg, ddh) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, eg)) -> new_esEs26(yvy40001, yvy30001, eg) new_compare25(yvy400, yvy300, app(app(ty_@2, caf), cag)) -> new_compare8(yvy400, yvy300, caf, cag) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fce)) -> new_esEs26(yvy153, yvy156, fce) new_esEs5(yvy4001, yvy3001, app(ty_[], eaa)) -> new_esEs17(yvy4001, yvy3001, eaa) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, eff)) -> new_esEs26(yvy40000, yvy30000, eff) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ebh)) -> new_ltEs9(yvy89, yvy90, ebh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, hh), gf)) -> new_esEs22(yvy4000, yvy3000, hh, gf) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_esEs19(yvy890, yvy900, dba, dbb) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, cad), cae)) -> new_compare30(yvy400, yvy300, cad, cae) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs13(yvy40000, yvy30000, bab, bac, bad) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccb), ccc)) -> new_ltEs5(yvy892, yvy902, ccb, ccc) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gf) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_esEs26(yvy165, yvy167, ehc) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bfh)) -> new_esEs23(yvy40000, yvy30000, bfh) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_Either, bag), bah)) -> new_esEs22(yvy40000, yvy30000, bag, bah) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dgg)) -> new_esEs17(yvy4002, yvy3002, dgg) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, dhg)) -> new_esEs23(yvy4002, yvy3002, dhg) new_compare210(yvy165, yvy166, yvy167, yvy168, False, efg, efh) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, efg), new_asAs(new_esEs37(yvy165, yvy167, efg), new_ltEs22(yvy166, yvy168, efh)), efg, efh) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], beh)) -> new_esEs17(yvy40000, yvy30000, beh) new_ltEs21(yvy103, yvy104, app(ty_Maybe, def)) -> new_ltEs13(yvy103, yvy104, def) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fd), ff)) -> new_esEs19(yvy40000, yvy30000, fd, ff) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], df)) -> new_esEs17(yvy40001, yvy30001, df) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs13(yvy890, yvy900, ceb, cec, ced) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbc) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, ega)) -> new_ltEs9(yvy166, yvy168, ega) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cah) -> new_esEs12(new_compare26(yvy152, yvy155, cah), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), cad, cae) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, fee), fef)) -> new_esEs22(yvy4000, yvy3000, fee, fef) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs13(yvy4000, yvy3000, bh, ca, cb) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, ecg), ech)) -> new_esEs22(yvy40001, yvy30001, ecg, ech) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, ef)) -> new_esEs23(yvy40001, yvy30001, ef) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bff), bfg)) -> new_esEs22(yvy40000, yvy30000, bff, bfg) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egb)) -> new_ltEs11(yvy166, yvy168, egb) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_esEs19(yvy891, yvy901, cdf, cdg) new_compare0([], :(yvy3000, yvy3001), bhg) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhe), dhf)) -> new_esEs22(yvy4002, yvy3002, dhe, dhf) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bcf, bbc) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eae), eaf)) -> new_esEs19(yvy4001, yvy3001, eae, eaf) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], bhg)) -> new_compare0(yvy400, yvy300, bhg) new_esEs10(yvy4001, yvy3001, app(ty_[], dbc)) -> new_esEs17(yvy4001, yvy3001, dbc) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gf) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_lt10(yvy890, yvy900, cdh) new_ltEs20(yvy891, yvy901, app(app(ty_Either, che), chf)) -> new_ltEs5(yvy891, yvy901, che, chf) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgb, bgc) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, db), dc)) -> new_esEs22(yvy40002, yvy30002, db, dc) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbc) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_lt16(yvy153, yvy156, fcg, fch, fda) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffa)) -> new_esEs17(yvy4000, yvy3000, ffa) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_Either, bde), bdf)) -> new_ltEs5(yvy890, yvy900, bde, bdf) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], bhg) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], edc)) -> new_esEs17(yvy40000, yvy30000, edc) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), cad, cae) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fdg)) -> new_esEs17(yvy4000, yvy3000, fdg) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcd), bce), bbc) -> new_ltEs17(yvy890, yvy900, bcd, bce) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, bee)) -> new_esEs26(yvy4000, yvy3000, bee) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfb) -> True new_ltEs13(Just(yvy890), Nothing, cfb) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, feg)) -> new_esEs23(yvy4000, yvy3000, feg) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ed), ee)) -> new_esEs22(yvy40001, yvy30001, ed, ee) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, edg), edh)) -> new_esEs19(yvy40000, yvy30000, edg, edh) new_ltEs19(yvy892, yvy902, app(ty_Maybe, cca)) -> new_ltEs13(yvy892, yvy902, cca) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_@2, bdg), bdh)) -> new_ltEs17(yvy890, yvy900, bdg, bdh) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_lt4(yvy165, yvy167, ehh) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fgc) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fgc), fgc) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebc), ebd)) -> new_esEs19(yvy4000, yvy3000, ebc, ebd) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebb)) -> new_esEs26(yvy4001, yvy3001, ebb) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_lt4(yvy891, yvy901, cdc) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dde)) -> new_esEs23(yvy4000, yvy3000, dde) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_esEs22(yvy152, yvy155, dfc, dfd) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_esEs19(yvy165, yvy167, fac, fad) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ffg), ffh)) -> new_esEs22(yvy4000, yvy3000, ffg, ffh) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], cc)) -> new_esEs17(yvy40002, yvy30002, cc) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_lt10(yvy891, yvy901, ccf) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bcf), bbc)) -> new_ltEs5(yvy89, yvy90, bcf, bbc) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfa), dfb)) -> new_ltEs17(yvy103, yvy104, dfa, dfb) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, eab), eac), ead)) -> new_esEs13(yvy4001, yvy3001, eab, eac, ead) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dcc)) -> new_esEs23(yvy4001, yvy3001, dcc) new_lt22(yvy152, yvy155, app(ty_Ratio, cah)) -> new_lt10(yvy152, yvy155, cah) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbd)) -> new_ltEs11(yvy154, yvy157, fbd) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cac) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhb), bhc)) -> new_ltEs5(yvy96, yvy97, bhb, bhc) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bhh, caa, cab) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bhh), new_asAs(new_esEs5(yvy4001, yvy3001, caa), new_esEs4(yvy4002, yvy3002, cab))), bhh, caa, cab) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], ccg)) -> new_esEs17(yvy891, yvy901, ccg) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fga)) -> new_esEs23(yvy4000, yvy3000, fga) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, ddg, ddh) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dca), dcb)) -> new_esEs22(yvy4001, yvy3001, dca, dcb) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs12(yvy890, yvy900, bda, bdb, bdc) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbe), bbc) -> new_ltEs11(yvy890, yvy900, bbe) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bb) -> new_esEs12(new_compare7(yvy152, yvy155, bb), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs13(yvy890, yvy900, dac, dad, dae) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs13(yvy4000, yvy3000, dff, dfg, dfh) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gf) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efa), efb)) -> new_esEs19(yvy40000, yvy30000, efa, efb) new_compare7(Nothing, Nothing, cac) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dea)) -> new_ltEs9(yvy103, yvy104, dea) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, bc, bd, be) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_esEs22(yvy890, yvy900, dag, dah) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) -> LT new_lt6(yvy152, yvy155, bed) -> new_esEs12(new_compare0(yvy152, yvy155, bed), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs13(yvy4000, yvy3000, dcf, dcg, dch) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, ddc), ddd)) -> new_esEs22(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_lt16(yvy890, yvy900, dac, dad, dae) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbc) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs26(yvy4000, yvy3000, fgb) new_ltEs20(yvy891, yvy901, app(app(ty_@2, chg), chh)) -> new_ltEs17(yvy891, yvy901, chg, chh) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), hh, gf) -> False new_esEs22(Right(yvy40000), Left(yvy30000), hh, gf) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbd), bbc) -> new_ltEs9(yvy890, yvy900, bbd) new_compare0(:(yvy4000, yvy4001), [], bhg) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_lt5(yvy890, yvy900, dba, dbb) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbc) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_lt19(yvy890, yvy900, dag, dah) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, dd)) -> new_esEs23(yvy40002, yvy30002, dd) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccd), cce)) -> new_ltEs17(yvy892, yvy902, ccd, cce) new_compare30(Left(yvy4000), Left(yvy3000), cad, cae) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, cad), cad, cae) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehd)) -> new_lt6(yvy165, yvy167, ehd) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_esEs23(yvy165, yvy167, ehh) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs13(yvy4000, yvy3000, ffb, ffc, ffd) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddf)) -> new_esEs26(yvy4000, yvy3000, ddf) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, hg), gf) -> new_esEs26(yvy40000, yvy30000, hg) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfc)) -> new_ltEs9(yvy890, yvy900, cfc) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_esEs19(yvy153, yvy156, fde, fdf) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs12(yvy89, yvy90, cba, cbb, cbc) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bhg) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bhg), bhg) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgf)) -> new_esEs26(yvy4000, yvy3000, dgf) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, daa)) -> new_esEs26(yvy890, yvy900, daa) new_lt21(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_lt10(yvy165, yvy167, ehc) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_lt5(yvy890, yvy900, ceh, cfa) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dec), ded), dee)) -> new_ltEs12(yvy103, yvy104, dec, ded, dee) new_lt12(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_lt19(yvy890, yvy900, cef, ceg) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egf)) -> new_ltEs13(yvy166, yvy168, egf) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cac) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cac), cac) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, eb), ec)) -> new_esEs19(yvy40001, yvy30001, eb, ec) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], eca)) -> new_esEs17(yvy40001, yvy30001, eca) new_compare7(Nothing, Just(yvy3000), cac) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, gg), gh), ha), gf) -> new_esEs13(yvy40000, yvy30000, gg, gh, ha) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgd)) -> new_ltEs9(yvy96, yvy97, bgd) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fae, faf, fag) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_ltEs12(yvy154, yvy157, fbe, fbf, fbg) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_esEs26(yvy891, yvy901, ccf) new_ltEs21(yvy103, yvy104, app(app(ty_Either, deg), deh)) -> new_ltEs5(yvy103, yvy104, deg, deh) new_esEs33(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_esEs26(yvy890, yvy900, cdh) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, gc, gd) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, daf)) -> new_lt4(yvy890, yvy900, daf) new_compare16(yvy189, yvy190, False, bec) -> GT new_compare24(yvy96, yvy97, False, bgb, bgc) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgb), bgb, bgc) new_ltEs22(yvy166, yvy168, app(app(ty_Either, egg), egh)) -> new_ltEs5(yvy166, yvy168, egg, egh) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hb), hc), gf) -> new_esEs19(yvy40000, yvy30000, hb, hc) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, eda)) -> new_esEs23(yvy40001, yvy30001, eda) new_lt23(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_lt19(yvy153, yvy156, fdc, fdd) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, egc), egd), ege)) -> new_ltEs12(yvy166, yvy168, egc, egd, ege) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_lt5(yvy153, yvy156, fde, fdf) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_@2, bae), baf)) -> new_esEs19(yvy40000, yvy30000, bae, baf) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbd)) -> new_ltEs9(yvy892, yvy902, cbd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhd), bhe)) -> new_ltEs17(yvy96, yvy97, bhd, bhe) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dce)) -> new_esEs17(yvy4000, yvy3000, dce) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfb)) -> new_ltEs13(yvy89, yvy90, cfb) new_esEs34(yvy890, yvy900, app(ty_[], dab)) -> new_esEs17(yvy890, yvy900, dab) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, feh)) -> new_esEs26(yvy4000, yvy3000, feh) new_compare110(yvy205, yvy206, False, ebf, ebg) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs13(yvy891, yvy901, cch, cda, cdb) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbc) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dab)) -> new_lt6(yvy890, yvy900, dab) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bea, beb) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eea), eeb)) -> new_esEs22(yvy40000, yvy30000, eea, eeb) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fbh)) -> new_ltEs13(yvy154, yvy157, fbh) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], beg) -> False new_esEs17([], :(yvy30000, yvy30001), beg) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_lt5(yvy152, yvy155, bf, bg) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_lt19(yvy152, yvy155, dfc, dfd) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcd)) -> new_esEs26(yvy4001, yvy3001, dcd) new_ltEs21(yvy103, yvy104, app(ty_[], deb)) -> new_ltEs11(yvy103, yvy104, deb) new_ltEs13(Nothing, Just(yvy900), cfb) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhc), dhd)) -> new_esEs19(yvy4002, yvy3002, dhc, dhd) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, fdh), fea), feb)) -> new_esEs13(yvy4000, yvy3000, fdh, fea, feb) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eec)) -> new_esEs23(yvy40000, yvy30000, eec) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs12(EQ, EQ) new_compare13(x0, x1, x2, x3, False, x4, x5) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(EQ, LT) new_compare28(LT, EQ) new_compare16(x0, x1, False, x2) new_compare14(x0, x1, True, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt21(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Float) new_fsEs(x0) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Ordering) new_esEs23(Just(x0), Nothing, x1) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt22(x0, x1, app(ty_[], x2)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare7(Just(x0), Just(x1), x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_lt23(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs39(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_compare28(GT, GT) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_ltEs24(x0, x1, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_esEs17([], [], x0) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Double) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare212(x0, x1, False, x2) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare7(Nothing, Nothing, x0) new_lt23(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1, x2) new_primPlusNat0(Zero, Succ(x0)) new_compare110(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_ltEs11(x0, x1, x2) new_lt21(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs22(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs10(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True, x2) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_lt6(x0, x1, x2) new_esEs33(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Int) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_compare25(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_lt5(x0, x1, x2, x3) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs14(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_compare24(x0, x1, True, x2, x3) new_esEs18(False, True) new_esEs18(True, False) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_compare19(False, False) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs32(x0, x1, app(ty_[], x2)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Zero) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_esEs16(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_ltEs13(Just(x0), Nothing, x1) new_lt12(x0, x1, ty_Int) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Float) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_lt10(x0, x1, x2) new_esEs31(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCompAux00(x0, EQ) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_compare212(x0, x1, True, x2) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_esEs17([], :(x0, x1), x2) new_asAs(False, x0) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs33(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt22(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs37(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Nothing, Nothing, x0) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Zero, Zero) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_lt19(x0, x1, x2, x3) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_pePe(False, x0) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Integer) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_lt16(x0, x1, x2, x3, x4) new_esEs6(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Float) new_ltEs13(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, ty_Char) new_compare211(x0, x1, True, x2, x3) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Int) new_compare7(Nothing, Just(x0), x1) new_ltEs21(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare6(x0, x1) new_lt13(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Int) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Zero) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_esEs36(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, x0) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_esEs23(Nothing, Just(x0), x1) new_ltEs13(Nothing, Nothing, x0) new_lt7(x0, x1) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs18(False, False) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Float) new_esEs23(Just(x0), Just(x1), ty_@0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(ty_[], x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_ltEs19(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Ordering) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_lt21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(x0, x1, ty_Ordering) new_ltEs9(x0, x1, x2) new_esEs35(x0, x1, ty_Double) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt12(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare28(LT, LT) new_esEs25(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(x0, x1) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_compare14(x0, x1, False, x2, x3) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Float) new_compare211(x0, x1, False, x2, x3) new_esEs14(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Bool) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_compare110(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_ltEs22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_compare25(x0, x1, app(ty_[], x2)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs11(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_not(False) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_esEs39(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_compare25(x0, x1, app(ty_Ratio, x2)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs15(x0, x1, ty_Float) new_compare24(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs38(x0, x1, ty_@0) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs15(x0, x1, ty_Char) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_compare7(Just(x0), Nothing, x1) new_esEs4(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt11(x0, x1, ty_Float) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare19(True, False) new_compare19(False, True) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) new_esEs17(:(x0, x1), [], x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (73) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 2 less nodes. ---------------------------------------- (74) Complex Obligation (AND) ---------------------------------------- (75) 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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbf), bbg), bbh), bbc) -> new_ltEs12(yvy890, yvy900, bbf, bbg, bbh) new_ltEs20(yvy891, yvy901, app(ty_[], cgh)) -> new_ltEs11(yvy891, yvy901, cgh) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_lt5(yvy891, yvy901, cdf, cdg) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Maybe, bdd)) -> new_ltEs13(yvy890, yvy900, bdd) new_lt20(yvy890, yvy900, app(ty_Ratio, daa)) -> new_lt10(yvy890, yvy900, daa) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cgc), cgd)) -> new_ltEs17(yvy890, yvy900, cgc, cgd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_lt19(yvy891, yvy901, cdd, cde) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fah, fba, fbb) -> new_esEs12(new_compare27(yvy152, yvy155, fah, fba, fbb), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_esEs19(yvy152, yvy155, bf, bg) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bca), bbc) -> new_ltEs13(yvy890, yvy900, bca) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cfh)) -> new_ltEs13(yvy890, yvy900, cfh) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eee)) -> new_esEs17(yvy40000, yvy30000, eee) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bea, beb) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebc, ebd) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebc), new_esEs35(yvy40001, yvy30001, ebd)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], ge), gf) -> new_esEs17(yvy40000, yvy30000, ge) new_compare25(yvy400, yvy300, app(ty_Ratio, bhf)) -> new_compare26(yvy400, yvy300, bhf) new_lt19(yvy152, yvy155, dfc, dfd) -> new_esEs12(new_compare30(yvy152, yvy155, dfc, dfd), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bed)) -> new_lt6(yvy152, yvy155, bed) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hf), gf) -> new_esEs23(yvy40000, yvy30000, hf) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fcf)) -> new_esEs17(yvy153, yvy156, fcf) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_lt16(yvy165, yvy167, ehe, ehf, ehg) new_esEs39(yvy152, yvy155, app(ty_Ratio, cah)) -> new_esEs26(yvy152, yvy155, cah) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_lt16(yvy891, yvy901, cch, cda, cdb) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_esEs23(yvy153, yvy156, fdb) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs13(yvy4001, yvy3001, dbd, dbe, dbf) new_lt21(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_lt19(yvy165, yvy167, faa, fab) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], beg)) -> new_esEs17(yvy4000, yvy3000, beg) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bcf, bbc) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gf) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbe)) -> new_ltEs11(yvy892, yvy902, cbe) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gf) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cea)) -> new_esEs17(yvy890, yvy900, cea) new_lt21(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_lt5(yvy165, yvy167, fac, fad) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, bc, bd, be) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_lt4(yvy153, yvy156, fdb) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_esEs22(yvy165, yvy167, faa, fab) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fca), fcb)) -> new_ltEs5(yvy154, yvy157, fca, fcb) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs13(yvy40000, yvy30000, bfa, bfb, bfc) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs13(yvy4002, yvy3002, dgh, dha, dhb) new_esEs23(Nothing, Just(yvy30000), ebe) -> False new_esEs23(Just(yvy40000), Nothing, ebe) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gf) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cgg)) -> new_ltEs9(yvy891, yvy901, cgg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_[], baa)) -> new_esEs17(yvy40000, yvy30000, baa) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cge, cgf) -> new_pePe(new_lt20(yvy890, yvy900, cge), new_asAs(new_esEs34(yvy890, yvy900, cge), new_ltEs20(yvy891, yvy901, cgf))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, de)) -> new_esEs26(yvy40002, yvy30002, de) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_esEs22(yvy153, yvy156, fdc, fdd) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bec) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], ccg)) -> new_lt6(yvy891, yvy901, ccg) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbc) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fec), fed)) -> new_esEs19(yvy4000, yvy3000, fec, fed) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebe) -> True new_lt12(yvy890, yvy900, app(ty_[], cea)) -> new_lt6(yvy890, yvy900, cea) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, daf)) -> new_esEs23(yvy890, yvy900, daf) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfe)) -> new_esEs17(yvy4000, yvy3000, dfe) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bga)) -> new_esEs26(yvy40000, yvy30000, bga) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], bef)) -> new_ltEs11(yvy89, yvy90, bef) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bge)) -> new_ltEs11(yvy96, yvy97, bge) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, fg), fh)) -> new_esEs22(yvy40000, yvy30000, fg, fh) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbc) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fae, faf, fag) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fae), new_asAs(new_esEs39(yvy152, yvy155, fae), new_pePe(new_lt23(yvy153, yvy156, faf), new_asAs(new_esEs38(yvy153, yvy156, faf), new_ltEs23(yvy154, yvy157, fag)))), fae, faf, fag) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcb), bcc), bbc) -> new_ltEs5(yvy890, yvy900, bcb, bcc) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, cee)) -> new_esEs23(yvy890, yvy900, cee) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cac)) -> new_compare7(yvy400, yvy300, cac) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edb)) -> new_esEs26(yvy40001, yvy30001, edb) new_lt22(yvy152, yvy155, app(ty_Maybe, bb)) -> new_lt4(yvy152, yvy155, bb) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, bef) -> new_fsEs(new_compare0(yvy89, yvy90, bef)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) new_compare30(Right(yvy4000), Right(yvy3000), cad, cae) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cae), cad, cae) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_lt16(yvy152, yvy155, fah, fba, fbb) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, cha), chb), chc)) -> new_ltEs12(yvy891, yvy901, cha, chb, chc) new_compare110(yvy205, yvy206, True, ebf, ebg) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehd)) -> new_esEs17(yvy165, yvy167, ehd) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, cg), da)) -> new_esEs19(yvy40002, yvy30002, cg, da) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), bee) -> new_asAs(new_esEs30(yvy40000, yvy30000, bee), new_esEs29(yvy40001, yvy30001, bee)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efe)) -> new_esEs23(yvy40000, yvy30000, efe) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dga), dgb)) -> new_esEs19(yvy4000, yvy3000, dga, dgb) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bfd), bfe)) -> new_esEs19(yvy40000, yvy30000, bfd, bfe) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Maybe, bba)) -> new_esEs23(yvy40000, yvy30000, bba) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efc), efd)) -> new_esEs22(yvy40000, yvy30000, efc, efd) new_esEs33(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_esEs22(yvy890, yvy900, cef, ceg) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_esEs13(yvy40001, yvy30001, ecb, ecc, ecd) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs12(yvy892, yvy902, cbf, cbg, cbh) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fcf)) -> new_lt6(yvy153, yvy156, fcf) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cba, cbb, cbc) -> new_pePe(new_lt12(yvy890, yvy900, cba), new_asAs(new_esEs33(yvy890, yvy900, cba), new_pePe(new_lt11(yvy891, yvy901, cbb), new_asAs(new_esEs32(yvy891, yvy901, cbb), new_ltEs19(yvy892, yvy902, cbc))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bh, ca, cb) -> new_asAs(new_esEs16(yvy40000, yvy30000, bh), new_asAs(new_esEs15(yvy40001, yvy30001, ca), new_esEs14(yvy40002, yvy30002, cb))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, gc, gd) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chd)) -> new_ltEs13(yvy891, yvy901, chd) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], eh)) -> new_esEs17(yvy40000, yvy30000, eh) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dgc), dgd)) -> new_esEs22(yvy4000, yvy3000, dgc, dgd) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cfd)) -> new_ltEs11(yvy890, yvy900, cfd) new_esEs39(yvy152, yvy155, app(ty_[], bed)) -> new_esEs17(yvy152, yvy155, bed) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, ga)) -> new_esEs23(yvy40000, yvy30000, ga) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_[], bch)) -> new_ltEs11(yvy890, yvy900, bch) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Ratio, bcg)) -> new_ltEs9(yvy890, yvy900, bcg) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_lt16(yvy890, yvy900, ceb, cec, ced) new_esEs39(yvy152, yvy155, app(ty_Maybe, bb)) -> new_esEs23(yvy152, yvy155, bb) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eed)) -> new_esEs26(yvy40000, yvy30000, eed) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], beg) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs12(yvy890, yvy900, cfe, cff, cfg) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_esEs22(yvy891, yvy901, cdd, cde) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eag), eah)) -> new_esEs22(yvy4001, yvy3001, eag, eah) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hd), he), gf) -> new_esEs22(yvy40000, yvy30000, hd, he) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs12(yvy96, yvy97, bgf, bgg, bgh) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cga), cgb)) -> new_ltEs5(yvy890, yvy900, cga, cgb) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), caf, cag) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, caf), new_esEs10(yvy4001, yvy3001, cag)), caf, cag) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbc)) -> new_ltEs9(yvy154, yvy157, fbc) new_lt23(yvy153, yvy156, app(ty_Ratio, fce)) -> new_lt10(yvy153, yvy156, fce) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbc) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs13(yvy40000, yvy30000, edd, ede, edf) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, dhh)) -> new_esEs26(yvy4002, yvy3002, dhh) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_esEs23(yvy891, yvy901, cdc) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fgc) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, eha), ehb)) -> new_ltEs17(yvy166, yvy168, eha, ehb) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eba)) -> new_esEs23(yvy4001, yvy3001, eba) new_compare25(yvy400, yvy300, app(app(app(ty_@3, bhh), caa), cab)) -> new_compare27(yvy400, yvy300, bhh, caa, cab) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs13(yvy40000, yvy30000, fa, fb, fc) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_esEs13(yvy152, yvy155, fah, fba, fbb) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dda), ddb)) -> new_esEs19(yvy4000, yvy3000, dda, ddb) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs13(yvy40000, yvy30000, eef, eeg, eeh) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bha)) -> new_ltEs13(yvy96, yvy97, bha) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ece), ecf)) -> new_esEs19(yvy40001, yvy30001, ece, ecf) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fcc), fcd)) -> new_ltEs17(yvy154, yvy157, fcc, fcd) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs13(yvy153, yvy156, fcg, fch, fda) new_lt5(yvy152, yvy155, bf, bg) -> new_esEs12(new_compare8(yvy152, yvy155, bf, bg), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs13(yvy40001, yvy30001, dg, dh, ea) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, cee)) -> new_lt4(yvy890, yvy900, cee) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dbg), dbh)) -> new_esEs19(yvy4001, yvy3001, dbg, dbh) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs13(yvy40002, yvy30002, cd, ce, cf) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dge)) -> new_esEs23(yvy4000, yvy3000, dge) new_esEs33(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_esEs19(yvy890, yvy900, ceh, cfa) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffe), fff)) -> new_esEs19(yvy4000, yvy3000, ffe, fff) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy89, yvy90, cge, cgf) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs13(yvy165, yvy167, ehe, ehf, ehg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Ratio, bbb)) -> new_esEs26(yvy40000, yvy30000, bbb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gf) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gb)) -> new_esEs26(yvy40000, yvy30000, gb) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), beg) -> new_asAs(new_esEs31(yvy40000, yvy30000, beg), new_esEs17(yvy40001, yvy30001, beg)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, efg, efh) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gf) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebe)) -> new_esEs23(yvy4000, yvy3000, ebe) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ebh) -> new_fsEs(new_compare26(yvy89, yvy90, ebh)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, ddg, ddh) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, ddh), ddg, ddh) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, eg)) -> new_esEs26(yvy40001, yvy30001, eg) new_compare25(yvy400, yvy300, app(app(ty_@2, caf), cag)) -> new_compare8(yvy400, yvy300, caf, cag) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fce)) -> new_esEs26(yvy153, yvy156, fce) new_esEs5(yvy4001, yvy3001, app(ty_[], eaa)) -> new_esEs17(yvy4001, yvy3001, eaa) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, eff)) -> new_esEs26(yvy40000, yvy30000, eff) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ebh)) -> new_ltEs9(yvy89, yvy90, ebh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, hh), gf)) -> new_esEs22(yvy4000, yvy3000, hh, gf) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_esEs19(yvy890, yvy900, dba, dbb) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, cad), cae)) -> new_compare30(yvy400, yvy300, cad, cae) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs13(yvy40000, yvy30000, bab, bac, bad) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccb), ccc)) -> new_ltEs5(yvy892, yvy902, ccb, ccc) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gf) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_esEs26(yvy165, yvy167, ehc) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bfh)) -> new_esEs23(yvy40000, yvy30000, bfh) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_Either, bag), bah)) -> new_esEs22(yvy40000, yvy30000, bag, bah) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dgg)) -> new_esEs17(yvy4002, yvy3002, dgg) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, dhg)) -> new_esEs23(yvy4002, yvy3002, dhg) new_compare210(yvy165, yvy166, yvy167, yvy168, False, efg, efh) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, efg), new_asAs(new_esEs37(yvy165, yvy167, efg), new_ltEs22(yvy166, yvy168, efh)), efg, efh) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], beh)) -> new_esEs17(yvy40000, yvy30000, beh) new_ltEs21(yvy103, yvy104, app(ty_Maybe, def)) -> new_ltEs13(yvy103, yvy104, def) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fd), ff)) -> new_esEs19(yvy40000, yvy30000, fd, ff) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], df)) -> new_esEs17(yvy40001, yvy30001, df) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs13(yvy890, yvy900, ceb, cec, ced) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbc) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, ega)) -> new_ltEs9(yvy166, yvy168, ega) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cah) -> new_esEs12(new_compare26(yvy152, yvy155, cah), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), cad, cae) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, fee), fef)) -> new_esEs22(yvy4000, yvy3000, fee, fef) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs13(yvy4000, yvy3000, bh, ca, cb) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, ecg), ech)) -> new_esEs22(yvy40001, yvy30001, ecg, ech) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, ef)) -> new_esEs23(yvy40001, yvy30001, ef) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bff), bfg)) -> new_esEs22(yvy40000, yvy30000, bff, bfg) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egb)) -> new_ltEs11(yvy166, yvy168, egb) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_esEs19(yvy891, yvy901, cdf, cdg) new_compare0([], :(yvy3000, yvy3001), bhg) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhe), dhf)) -> new_esEs22(yvy4002, yvy3002, dhe, dhf) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bcf, bbc) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eae), eaf)) -> new_esEs19(yvy4001, yvy3001, eae, eaf) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], bhg)) -> new_compare0(yvy400, yvy300, bhg) new_esEs10(yvy4001, yvy3001, app(ty_[], dbc)) -> new_esEs17(yvy4001, yvy3001, dbc) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gf) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_lt10(yvy890, yvy900, cdh) new_ltEs20(yvy891, yvy901, app(app(ty_Either, che), chf)) -> new_ltEs5(yvy891, yvy901, che, chf) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgb, bgc) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, db), dc)) -> new_esEs22(yvy40002, yvy30002, db, dc) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbc) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_lt16(yvy153, yvy156, fcg, fch, fda) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffa)) -> new_esEs17(yvy4000, yvy3000, ffa) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_Either, bde), bdf)) -> new_ltEs5(yvy890, yvy900, bde, bdf) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], bhg) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], edc)) -> new_esEs17(yvy40000, yvy30000, edc) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), cad, cae) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fdg)) -> new_esEs17(yvy4000, yvy3000, fdg) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcd), bce), bbc) -> new_ltEs17(yvy890, yvy900, bcd, bce) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, bee)) -> new_esEs26(yvy4000, yvy3000, bee) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfb) -> True new_ltEs13(Just(yvy890), Nothing, cfb) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, feg)) -> new_esEs23(yvy4000, yvy3000, feg) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ed), ee)) -> new_esEs22(yvy40001, yvy30001, ed, ee) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, edg), edh)) -> new_esEs19(yvy40000, yvy30000, edg, edh) new_ltEs19(yvy892, yvy902, app(ty_Maybe, cca)) -> new_ltEs13(yvy892, yvy902, cca) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_@2, bdg), bdh)) -> new_ltEs17(yvy890, yvy900, bdg, bdh) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_lt4(yvy165, yvy167, ehh) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fgc) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fgc), fgc) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebc), ebd)) -> new_esEs19(yvy4000, yvy3000, ebc, ebd) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebb)) -> new_esEs26(yvy4001, yvy3001, ebb) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_lt4(yvy891, yvy901, cdc) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dde)) -> new_esEs23(yvy4000, yvy3000, dde) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_esEs22(yvy152, yvy155, dfc, dfd) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_esEs19(yvy165, yvy167, fac, fad) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ffg), ffh)) -> new_esEs22(yvy4000, yvy3000, ffg, ffh) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], cc)) -> new_esEs17(yvy40002, yvy30002, cc) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_lt10(yvy891, yvy901, ccf) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bcf), bbc)) -> new_ltEs5(yvy89, yvy90, bcf, bbc) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfa), dfb)) -> new_ltEs17(yvy103, yvy104, dfa, dfb) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, eab), eac), ead)) -> new_esEs13(yvy4001, yvy3001, eab, eac, ead) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dcc)) -> new_esEs23(yvy4001, yvy3001, dcc) new_lt22(yvy152, yvy155, app(ty_Ratio, cah)) -> new_lt10(yvy152, yvy155, cah) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbd)) -> new_ltEs11(yvy154, yvy157, fbd) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cac) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhb), bhc)) -> new_ltEs5(yvy96, yvy97, bhb, bhc) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bhh, caa, cab) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bhh), new_asAs(new_esEs5(yvy4001, yvy3001, caa), new_esEs4(yvy4002, yvy3002, cab))), bhh, caa, cab) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], ccg)) -> new_esEs17(yvy891, yvy901, ccg) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fga)) -> new_esEs23(yvy4000, yvy3000, fga) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, ddg, ddh) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dca), dcb)) -> new_esEs22(yvy4001, yvy3001, dca, dcb) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs12(yvy890, yvy900, bda, bdb, bdc) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbe), bbc) -> new_ltEs11(yvy890, yvy900, bbe) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bb) -> new_esEs12(new_compare7(yvy152, yvy155, bb), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs13(yvy890, yvy900, dac, dad, dae) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs13(yvy4000, yvy3000, dff, dfg, dfh) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gf) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efa), efb)) -> new_esEs19(yvy40000, yvy30000, efa, efb) new_compare7(Nothing, Nothing, cac) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dea)) -> new_ltEs9(yvy103, yvy104, dea) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, bc, bd, be) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_esEs22(yvy890, yvy900, dag, dah) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) -> LT new_lt6(yvy152, yvy155, bed) -> new_esEs12(new_compare0(yvy152, yvy155, bed), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs13(yvy4000, yvy3000, dcf, dcg, dch) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, ddc), ddd)) -> new_esEs22(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_lt16(yvy890, yvy900, dac, dad, dae) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbc) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs26(yvy4000, yvy3000, fgb) new_ltEs20(yvy891, yvy901, app(app(ty_@2, chg), chh)) -> new_ltEs17(yvy891, yvy901, chg, chh) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), hh, gf) -> False new_esEs22(Right(yvy40000), Left(yvy30000), hh, gf) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbd), bbc) -> new_ltEs9(yvy890, yvy900, bbd) new_compare0(:(yvy4000, yvy4001), [], bhg) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_lt5(yvy890, yvy900, dba, dbb) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbc) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_lt19(yvy890, yvy900, dag, dah) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, dd)) -> new_esEs23(yvy40002, yvy30002, dd) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccd), cce)) -> new_ltEs17(yvy892, yvy902, ccd, cce) new_compare30(Left(yvy4000), Left(yvy3000), cad, cae) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, cad), cad, cae) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehd)) -> new_lt6(yvy165, yvy167, ehd) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_esEs23(yvy165, yvy167, ehh) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs13(yvy4000, yvy3000, ffb, ffc, ffd) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddf)) -> new_esEs26(yvy4000, yvy3000, ddf) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, hg), gf) -> new_esEs26(yvy40000, yvy30000, hg) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfc)) -> new_ltEs9(yvy890, yvy900, cfc) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_esEs19(yvy153, yvy156, fde, fdf) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs12(yvy89, yvy90, cba, cbb, cbc) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bhg) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bhg), bhg) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgf)) -> new_esEs26(yvy4000, yvy3000, dgf) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, daa)) -> new_esEs26(yvy890, yvy900, daa) new_lt21(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_lt10(yvy165, yvy167, ehc) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_lt5(yvy890, yvy900, ceh, cfa) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dec), ded), dee)) -> new_ltEs12(yvy103, yvy104, dec, ded, dee) new_lt12(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_lt19(yvy890, yvy900, cef, ceg) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egf)) -> new_ltEs13(yvy166, yvy168, egf) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cac) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cac), cac) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, eb), ec)) -> new_esEs19(yvy40001, yvy30001, eb, ec) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], eca)) -> new_esEs17(yvy40001, yvy30001, eca) new_compare7(Nothing, Just(yvy3000), cac) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, gg), gh), ha), gf) -> new_esEs13(yvy40000, yvy30000, gg, gh, ha) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgd)) -> new_ltEs9(yvy96, yvy97, bgd) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fae, faf, fag) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_ltEs12(yvy154, yvy157, fbe, fbf, fbg) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_esEs26(yvy891, yvy901, ccf) new_ltEs21(yvy103, yvy104, app(app(ty_Either, deg), deh)) -> new_ltEs5(yvy103, yvy104, deg, deh) new_esEs33(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_esEs26(yvy890, yvy900, cdh) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, gc, gd) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, daf)) -> new_lt4(yvy890, yvy900, daf) new_compare16(yvy189, yvy190, False, bec) -> GT new_compare24(yvy96, yvy97, False, bgb, bgc) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgb), bgb, bgc) new_ltEs22(yvy166, yvy168, app(app(ty_Either, egg), egh)) -> new_ltEs5(yvy166, yvy168, egg, egh) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hb), hc), gf) -> new_esEs19(yvy40000, yvy30000, hb, hc) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, eda)) -> new_esEs23(yvy40001, yvy30001, eda) new_lt23(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_lt19(yvy153, yvy156, fdc, fdd) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, egc), egd), ege)) -> new_ltEs12(yvy166, yvy168, egc, egd, ege) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_lt5(yvy153, yvy156, fde, fdf) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_@2, bae), baf)) -> new_esEs19(yvy40000, yvy30000, bae, baf) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbd)) -> new_ltEs9(yvy892, yvy902, cbd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhd), bhe)) -> new_ltEs17(yvy96, yvy97, bhd, bhe) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dce)) -> new_esEs17(yvy4000, yvy3000, dce) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfb)) -> new_ltEs13(yvy89, yvy90, cfb) new_esEs34(yvy890, yvy900, app(ty_[], dab)) -> new_esEs17(yvy890, yvy900, dab) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, feh)) -> new_esEs26(yvy4000, yvy3000, feh) new_compare110(yvy205, yvy206, False, ebf, ebg) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs13(yvy891, yvy901, cch, cda, cdb) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbc) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dab)) -> new_lt6(yvy890, yvy900, dab) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bea, beb) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eea), eeb)) -> new_esEs22(yvy40000, yvy30000, eea, eeb) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fbh)) -> new_ltEs13(yvy154, yvy157, fbh) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], beg) -> False new_esEs17([], :(yvy30000, yvy30001), beg) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_lt5(yvy152, yvy155, bf, bg) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_lt19(yvy152, yvy155, dfc, dfd) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcd)) -> new_esEs26(yvy4001, yvy3001, dcd) new_ltEs21(yvy103, yvy104, app(ty_[], deb)) -> new_ltEs11(yvy103, yvy104, deb) new_ltEs13(Nothing, Just(yvy900), cfb) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhc), dhd)) -> new_esEs19(yvy4002, yvy3002, dhc, dhd) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, fdh), fea), feb)) -> new_esEs13(yvy4000, yvy3000, fdh, fea, feb) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eec)) -> new_esEs23(yvy40000, yvy30000, eec) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs12(EQ, EQ) new_compare13(x0, x1, x2, x3, False, x4, x5) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(EQ, LT) new_compare28(LT, EQ) new_compare16(x0, x1, False, x2) new_compare14(x0, x1, True, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt21(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Float) new_fsEs(x0) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Ordering) new_esEs23(Just(x0), Nothing, x1) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt22(x0, x1, app(ty_[], x2)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare7(Just(x0), Just(x1), x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_lt23(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs39(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_compare28(GT, GT) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_ltEs24(x0, x1, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_esEs17([], [], x0) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Double) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare212(x0, x1, False, x2) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare7(Nothing, Nothing, x0) new_lt23(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1, x2) new_primPlusNat0(Zero, Succ(x0)) new_compare110(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_ltEs11(x0, x1, x2) new_lt21(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs22(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs10(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True, x2) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_lt6(x0, x1, x2) new_esEs33(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Int) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_compare25(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_lt5(x0, x1, x2, x3) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs14(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_compare24(x0, x1, True, x2, x3) new_esEs18(False, True) new_esEs18(True, False) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_compare19(False, False) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs32(x0, x1, app(ty_[], x2)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Zero) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_esEs16(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_ltEs13(Just(x0), Nothing, x1) new_lt12(x0, x1, ty_Int) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Float) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_lt10(x0, x1, x2) new_esEs31(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCompAux00(x0, EQ) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_compare212(x0, x1, True, x2) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_esEs17([], :(x0, x1), x2) new_asAs(False, x0) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs33(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt22(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs37(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Nothing, Nothing, x0) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Zero, Zero) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_lt19(x0, x1, x2, x3) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_pePe(False, x0) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Integer) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_lt16(x0, x1, x2, x3, x4) new_esEs6(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Float) new_ltEs13(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, ty_Char) new_compare211(x0, x1, True, x2, x3) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Int) new_compare7(Nothing, Just(x0), x1) new_ltEs21(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare6(x0, x1) new_lt13(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Int) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Zero) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_esEs36(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, x0) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_esEs23(Nothing, Just(x0), x1) new_ltEs13(Nothing, Nothing, x0) new_lt7(x0, x1) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs18(False, False) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Float) new_esEs23(Just(x0), Just(x1), ty_@0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(ty_[], x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_ltEs19(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Ordering) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_lt21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(x0, x1, ty_Ordering) new_ltEs9(x0, x1, x2) new_esEs35(x0, x1, ty_Double) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt12(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare28(LT, LT) new_esEs25(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(x0, x1) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_compare14(x0, x1, False, x2, x3) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Float) new_compare211(x0, x1, False, x2, x3) new_esEs14(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Bool) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_compare110(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_ltEs22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_compare25(x0, x1, app(ty_[], x2)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs11(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_not(False) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_esEs39(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_compare25(x0, x1, app(ty_Ratio, x2)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs15(x0, x1, ty_Float) new_compare24(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs38(x0, x1, ty_@0) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs15(x0, x1, ty_Char) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_compare7(Just(x0), Nothing, x1) new_esEs4(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt11(x0, x1, ty_Float) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare19(True, False) new_compare19(False, True) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) new_esEs17(:(x0, x1), [], x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (76) 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 ---------------------------------------- (77) YES ---------------------------------------- (78) 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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbf), bbg), bbh), bbc) -> new_ltEs12(yvy890, yvy900, bbf, bbg, bbh) new_ltEs20(yvy891, yvy901, app(ty_[], cgh)) -> new_ltEs11(yvy891, yvy901, cgh) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_lt5(yvy891, yvy901, cdf, cdg) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Maybe, bdd)) -> new_ltEs13(yvy890, yvy900, bdd) new_lt20(yvy890, yvy900, app(ty_Ratio, daa)) -> new_lt10(yvy890, yvy900, daa) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cgc), cgd)) -> new_ltEs17(yvy890, yvy900, cgc, cgd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_lt19(yvy891, yvy901, cdd, cde) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fah, fba, fbb) -> new_esEs12(new_compare27(yvy152, yvy155, fah, fba, fbb), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_esEs19(yvy152, yvy155, bf, bg) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bca), bbc) -> new_ltEs13(yvy890, yvy900, bca) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cfh)) -> new_ltEs13(yvy890, yvy900, cfh) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eee)) -> new_esEs17(yvy40000, yvy30000, eee) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bea, beb) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebc, ebd) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebc), new_esEs35(yvy40001, yvy30001, ebd)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], ge), gf) -> new_esEs17(yvy40000, yvy30000, ge) new_compare25(yvy400, yvy300, app(ty_Ratio, bhf)) -> new_compare26(yvy400, yvy300, bhf) new_lt19(yvy152, yvy155, dfc, dfd) -> new_esEs12(new_compare30(yvy152, yvy155, dfc, dfd), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bed)) -> new_lt6(yvy152, yvy155, bed) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hf), gf) -> new_esEs23(yvy40000, yvy30000, hf) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fcf)) -> new_esEs17(yvy153, yvy156, fcf) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_lt16(yvy165, yvy167, ehe, ehf, ehg) new_esEs39(yvy152, yvy155, app(ty_Ratio, cah)) -> new_esEs26(yvy152, yvy155, cah) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_lt16(yvy891, yvy901, cch, cda, cdb) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_esEs23(yvy153, yvy156, fdb) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs13(yvy4001, yvy3001, dbd, dbe, dbf) new_lt21(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_lt19(yvy165, yvy167, faa, fab) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], beg)) -> new_esEs17(yvy4000, yvy3000, beg) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bcf, bbc) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gf) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbe)) -> new_ltEs11(yvy892, yvy902, cbe) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gf) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cea)) -> new_esEs17(yvy890, yvy900, cea) new_lt21(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_lt5(yvy165, yvy167, fac, fad) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, bc, bd, be) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_lt4(yvy153, yvy156, fdb) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_esEs22(yvy165, yvy167, faa, fab) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fca), fcb)) -> new_ltEs5(yvy154, yvy157, fca, fcb) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs13(yvy40000, yvy30000, bfa, bfb, bfc) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs13(yvy4002, yvy3002, dgh, dha, dhb) new_esEs23(Nothing, Just(yvy30000), ebe) -> False new_esEs23(Just(yvy40000), Nothing, ebe) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gf) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cgg)) -> new_ltEs9(yvy891, yvy901, cgg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_[], baa)) -> new_esEs17(yvy40000, yvy30000, baa) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cge, cgf) -> new_pePe(new_lt20(yvy890, yvy900, cge), new_asAs(new_esEs34(yvy890, yvy900, cge), new_ltEs20(yvy891, yvy901, cgf))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, de)) -> new_esEs26(yvy40002, yvy30002, de) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_esEs22(yvy153, yvy156, fdc, fdd) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bec) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], ccg)) -> new_lt6(yvy891, yvy901, ccg) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbc) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fec), fed)) -> new_esEs19(yvy4000, yvy3000, fec, fed) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebe) -> True new_lt12(yvy890, yvy900, app(ty_[], cea)) -> new_lt6(yvy890, yvy900, cea) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, daf)) -> new_esEs23(yvy890, yvy900, daf) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfe)) -> new_esEs17(yvy4000, yvy3000, dfe) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bga)) -> new_esEs26(yvy40000, yvy30000, bga) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], bef)) -> new_ltEs11(yvy89, yvy90, bef) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bge)) -> new_ltEs11(yvy96, yvy97, bge) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, fg), fh)) -> new_esEs22(yvy40000, yvy30000, fg, fh) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbc) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fae, faf, fag) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fae), new_asAs(new_esEs39(yvy152, yvy155, fae), new_pePe(new_lt23(yvy153, yvy156, faf), new_asAs(new_esEs38(yvy153, yvy156, faf), new_ltEs23(yvy154, yvy157, fag)))), fae, faf, fag) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcb), bcc), bbc) -> new_ltEs5(yvy890, yvy900, bcb, bcc) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, cee)) -> new_esEs23(yvy890, yvy900, cee) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cac)) -> new_compare7(yvy400, yvy300, cac) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edb)) -> new_esEs26(yvy40001, yvy30001, edb) new_lt22(yvy152, yvy155, app(ty_Maybe, bb)) -> new_lt4(yvy152, yvy155, bb) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, bef) -> new_fsEs(new_compare0(yvy89, yvy90, bef)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) new_compare30(Right(yvy4000), Right(yvy3000), cad, cae) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cae), cad, cae) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_lt16(yvy152, yvy155, fah, fba, fbb) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, cha), chb), chc)) -> new_ltEs12(yvy891, yvy901, cha, chb, chc) new_compare110(yvy205, yvy206, True, ebf, ebg) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehd)) -> new_esEs17(yvy165, yvy167, ehd) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, cg), da)) -> new_esEs19(yvy40002, yvy30002, cg, da) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), bee) -> new_asAs(new_esEs30(yvy40000, yvy30000, bee), new_esEs29(yvy40001, yvy30001, bee)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efe)) -> new_esEs23(yvy40000, yvy30000, efe) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dga), dgb)) -> new_esEs19(yvy4000, yvy3000, dga, dgb) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bfd), bfe)) -> new_esEs19(yvy40000, yvy30000, bfd, bfe) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Maybe, bba)) -> new_esEs23(yvy40000, yvy30000, bba) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efc), efd)) -> new_esEs22(yvy40000, yvy30000, efc, efd) new_esEs33(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_esEs22(yvy890, yvy900, cef, ceg) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_esEs13(yvy40001, yvy30001, ecb, ecc, ecd) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs12(yvy892, yvy902, cbf, cbg, cbh) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fcf)) -> new_lt6(yvy153, yvy156, fcf) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cba, cbb, cbc) -> new_pePe(new_lt12(yvy890, yvy900, cba), new_asAs(new_esEs33(yvy890, yvy900, cba), new_pePe(new_lt11(yvy891, yvy901, cbb), new_asAs(new_esEs32(yvy891, yvy901, cbb), new_ltEs19(yvy892, yvy902, cbc))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bh, ca, cb) -> new_asAs(new_esEs16(yvy40000, yvy30000, bh), new_asAs(new_esEs15(yvy40001, yvy30001, ca), new_esEs14(yvy40002, yvy30002, cb))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, gc, gd) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chd)) -> new_ltEs13(yvy891, yvy901, chd) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], eh)) -> new_esEs17(yvy40000, yvy30000, eh) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dgc), dgd)) -> new_esEs22(yvy4000, yvy3000, dgc, dgd) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cfd)) -> new_ltEs11(yvy890, yvy900, cfd) new_esEs39(yvy152, yvy155, app(ty_[], bed)) -> new_esEs17(yvy152, yvy155, bed) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, ga)) -> new_esEs23(yvy40000, yvy30000, ga) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_[], bch)) -> new_ltEs11(yvy890, yvy900, bch) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Ratio, bcg)) -> new_ltEs9(yvy890, yvy900, bcg) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_lt16(yvy890, yvy900, ceb, cec, ced) new_esEs39(yvy152, yvy155, app(ty_Maybe, bb)) -> new_esEs23(yvy152, yvy155, bb) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eed)) -> new_esEs26(yvy40000, yvy30000, eed) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], beg) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs12(yvy890, yvy900, cfe, cff, cfg) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_esEs22(yvy891, yvy901, cdd, cde) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eag), eah)) -> new_esEs22(yvy4001, yvy3001, eag, eah) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hd), he), gf) -> new_esEs22(yvy40000, yvy30000, hd, he) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs12(yvy96, yvy97, bgf, bgg, bgh) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cga), cgb)) -> new_ltEs5(yvy890, yvy900, cga, cgb) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), caf, cag) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, caf), new_esEs10(yvy4001, yvy3001, cag)), caf, cag) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbc)) -> new_ltEs9(yvy154, yvy157, fbc) new_lt23(yvy153, yvy156, app(ty_Ratio, fce)) -> new_lt10(yvy153, yvy156, fce) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbc) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs13(yvy40000, yvy30000, edd, ede, edf) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, dhh)) -> new_esEs26(yvy4002, yvy3002, dhh) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_esEs23(yvy891, yvy901, cdc) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fgc) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, eha), ehb)) -> new_ltEs17(yvy166, yvy168, eha, ehb) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eba)) -> new_esEs23(yvy4001, yvy3001, eba) new_compare25(yvy400, yvy300, app(app(app(ty_@3, bhh), caa), cab)) -> new_compare27(yvy400, yvy300, bhh, caa, cab) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs13(yvy40000, yvy30000, fa, fb, fc) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_esEs13(yvy152, yvy155, fah, fba, fbb) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dda), ddb)) -> new_esEs19(yvy4000, yvy3000, dda, ddb) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs13(yvy40000, yvy30000, eef, eeg, eeh) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bha)) -> new_ltEs13(yvy96, yvy97, bha) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ece), ecf)) -> new_esEs19(yvy40001, yvy30001, ece, ecf) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fcc), fcd)) -> new_ltEs17(yvy154, yvy157, fcc, fcd) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs13(yvy153, yvy156, fcg, fch, fda) new_lt5(yvy152, yvy155, bf, bg) -> new_esEs12(new_compare8(yvy152, yvy155, bf, bg), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs13(yvy40001, yvy30001, dg, dh, ea) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, cee)) -> new_lt4(yvy890, yvy900, cee) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dbg), dbh)) -> new_esEs19(yvy4001, yvy3001, dbg, dbh) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs13(yvy40002, yvy30002, cd, ce, cf) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dge)) -> new_esEs23(yvy4000, yvy3000, dge) new_esEs33(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_esEs19(yvy890, yvy900, ceh, cfa) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffe), fff)) -> new_esEs19(yvy4000, yvy3000, ffe, fff) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy89, yvy90, cge, cgf) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs13(yvy165, yvy167, ehe, ehf, ehg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Ratio, bbb)) -> new_esEs26(yvy40000, yvy30000, bbb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gf) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gb)) -> new_esEs26(yvy40000, yvy30000, gb) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), beg) -> new_asAs(new_esEs31(yvy40000, yvy30000, beg), new_esEs17(yvy40001, yvy30001, beg)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, efg, efh) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gf) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebe)) -> new_esEs23(yvy4000, yvy3000, ebe) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ebh) -> new_fsEs(new_compare26(yvy89, yvy90, ebh)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, ddg, ddh) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, ddh), ddg, ddh) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, eg)) -> new_esEs26(yvy40001, yvy30001, eg) new_compare25(yvy400, yvy300, app(app(ty_@2, caf), cag)) -> new_compare8(yvy400, yvy300, caf, cag) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fce)) -> new_esEs26(yvy153, yvy156, fce) new_esEs5(yvy4001, yvy3001, app(ty_[], eaa)) -> new_esEs17(yvy4001, yvy3001, eaa) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, eff)) -> new_esEs26(yvy40000, yvy30000, eff) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ebh)) -> new_ltEs9(yvy89, yvy90, ebh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, hh), gf)) -> new_esEs22(yvy4000, yvy3000, hh, gf) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_esEs19(yvy890, yvy900, dba, dbb) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, cad), cae)) -> new_compare30(yvy400, yvy300, cad, cae) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs13(yvy40000, yvy30000, bab, bac, bad) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccb), ccc)) -> new_ltEs5(yvy892, yvy902, ccb, ccc) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gf) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_esEs26(yvy165, yvy167, ehc) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bfh)) -> new_esEs23(yvy40000, yvy30000, bfh) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_Either, bag), bah)) -> new_esEs22(yvy40000, yvy30000, bag, bah) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dgg)) -> new_esEs17(yvy4002, yvy3002, dgg) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, dhg)) -> new_esEs23(yvy4002, yvy3002, dhg) new_compare210(yvy165, yvy166, yvy167, yvy168, False, efg, efh) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, efg), new_asAs(new_esEs37(yvy165, yvy167, efg), new_ltEs22(yvy166, yvy168, efh)), efg, efh) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], beh)) -> new_esEs17(yvy40000, yvy30000, beh) new_ltEs21(yvy103, yvy104, app(ty_Maybe, def)) -> new_ltEs13(yvy103, yvy104, def) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fd), ff)) -> new_esEs19(yvy40000, yvy30000, fd, ff) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], df)) -> new_esEs17(yvy40001, yvy30001, df) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs13(yvy890, yvy900, ceb, cec, ced) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbc) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, ega)) -> new_ltEs9(yvy166, yvy168, ega) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cah) -> new_esEs12(new_compare26(yvy152, yvy155, cah), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), cad, cae) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, fee), fef)) -> new_esEs22(yvy4000, yvy3000, fee, fef) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs13(yvy4000, yvy3000, bh, ca, cb) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, ecg), ech)) -> new_esEs22(yvy40001, yvy30001, ecg, ech) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, ef)) -> new_esEs23(yvy40001, yvy30001, ef) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bff), bfg)) -> new_esEs22(yvy40000, yvy30000, bff, bfg) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egb)) -> new_ltEs11(yvy166, yvy168, egb) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_esEs19(yvy891, yvy901, cdf, cdg) new_compare0([], :(yvy3000, yvy3001), bhg) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhe), dhf)) -> new_esEs22(yvy4002, yvy3002, dhe, dhf) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bcf, bbc) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eae), eaf)) -> new_esEs19(yvy4001, yvy3001, eae, eaf) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], bhg)) -> new_compare0(yvy400, yvy300, bhg) new_esEs10(yvy4001, yvy3001, app(ty_[], dbc)) -> new_esEs17(yvy4001, yvy3001, dbc) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gf) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_lt10(yvy890, yvy900, cdh) new_ltEs20(yvy891, yvy901, app(app(ty_Either, che), chf)) -> new_ltEs5(yvy891, yvy901, che, chf) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgb, bgc) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, db), dc)) -> new_esEs22(yvy40002, yvy30002, db, dc) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbc) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_lt16(yvy153, yvy156, fcg, fch, fda) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffa)) -> new_esEs17(yvy4000, yvy3000, ffa) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_Either, bde), bdf)) -> new_ltEs5(yvy890, yvy900, bde, bdf) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], bhg) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], edc)) -> new_esEs17(yvy40000, yvy30000, edc) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), cad, cae) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fdg)) -> new_esEs17(yvy4000, yvy3000, fdg) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcd), bce), bbc) -> new_ltEs17(yvy890, yvy900, bcd, bce) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, bee)) -> new_esEs26(yvy4000, yvy3000, bee) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfb) -> True new_ltEs13(Just(yvy890), Nothing, cfb) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, feg)) -> new_esEs23(yvy4000, yvy3000, feg) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ed), ee)) -> new_esEs22(yvy40001, yvy30001, ed, ee) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, edg), edh)) -> new_esEs19(yvy40000, yvy30000, edg, edh) new_ltEs19(yvy892, yvy902, app(ty_Maybe, cca)) -> new_ltEs13(yvy892, yvy902, cca) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_@2, bdg), bdh)) -> new_ltEs17(yvy890, yvy900, bdg, bdh) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_lt4(yvy165, yvy167, ehh) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fgc) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fgc), fgc) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebc), ebd)) -> new_esEs19(yvy4000, yvy3000, ebc, ebd) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebb)) -> new_esEs26(yvy4001, yvy3001, ebb) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_lt4(yvy891, yvy901, cdc) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dde)) -> new_esEs23(yvy4000, yvy3000, dde) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_esEs22(yvy152, yvy155, dfc, dfd) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_esEs19(yvy165, yvy167, fac, fad) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ffg), ffh)) -> new_esEs22(yvy4000, yvy3000, ffg, ffh) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], cc)) -> new_esEs17(yvy40002, yvy30002, cc) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_lt10(yvy891, yvy901, ccf) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bcf), bbc)) -> new_ltEs5(yvy89, yvy90, bcf, bbc) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfa), dfb)) -> new_ltEs17(yvy103, yvy104, dfa, dfb) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, eab), eac), ead)) -> new_esEs13(yvy4001, yvy3001, eab, eac, ead) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dcc)) -> new_esEs23(yvy4001, yvy3001, dcc) new_lt22(yvy152, yvy155, app(ty_Ratio, cah)) -> new_lt10(yvy152, yvy155, cah) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbd)) -> new_ltEs11(yvy154, yvy157, fbd) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cac) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhb), bhc)) -> new_ltEs5(yvy96, yvy97, bhb, bhc) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bhh, caa, cab) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bhh), new_asAs(new_esEs5(yvy4001, yvy3001, caa), new_esEs4(yvy4002, yvy3002, cab))), bhh, caa, cab) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], ccg)) -> new_esEs17(yvy891, yvy901, ccg) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fga)) -> new_esEs23(yvy4000, yvy3000, fga) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, ddg, ddh) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dca), dcb)) -> new_esEs22(yvy4001, yvy3001, dca, dcb) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs12(yvy890, yvy900, bda, bdb, bdc) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbe), bbc) -> new_ltEs11(yvy890, yvy900, bbe) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bb) -> new_esEs12(new_compare7(yvy152, yvy155, bb), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs13(yvy890, yvy900, dac, dad, dae) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs13(yvy4000, yvy3000, dff, dfg, dfh) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gf) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efa), efb)) -> new_esEs19(yvy40000, yvy30000, efa, efb) new_compare7(Nothing, Nothing, cac) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dea)) -> new_ltEs9(yvy103, yvy104, dea) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, bc, bd, be) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_esEs22(yvy890, yvy900, dag, dah) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) -> LT new_lt6(yvy152, yvy155, bed) -> new_esEs12(new_compare0(yvy152, yvy155, bed), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs13(yvy4000, yvy3000, dcf, dcg, dch) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, ddc), ddd)) -> new_esEs22(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_lt16(yvy890, yvy900, dac, dad, dae) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbc) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs26(yvy4000, yvy3000, fgb) new_ltEs20(yvy891, yvy901, app(app(ty_@2, chg), chh)) -> new_ltEs17(yvy891, yvy901, chg, chh) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), hh, gf) -> False new_esEs22(Right(yvy40000), Left(yvy30000), hh, gf) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbd), bbc) -> new_ltEs9(yvy890, yvy900, bbd) new_compare0(:(yvy4000, yvy4001), [], bhg) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_lt5(yvy890, yvy900, dba, dbb) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbc) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_lt19(yvy890, yvy900, dag, dah) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, dd)) -> new_esEs23(yvy40002, yvy30002, dd) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccd), cce)) -> new_ltEs17(yvy892, yvy902, ccd, cce) new_compare30(Left(yvy4000), Left(yvy3000), cad, cae) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, cad), cad, cae) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehd)) -> new_lt6(yvy165, yvy167, ehd) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_esEs23(yvy165, yvy167, ehh) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs13(yvy4000, yvy3000, ffb, ffc, ffd) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddf)) -> new_esEs26(yvy4000, yvy3000, ddf) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, hg), gf) -> new_esEs26(yvy40000, yvy30000, hg) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfc)) -> new_ltEs9(yvy890, yvy900, cfc) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_esEs19(yvy153, yvy156, fde, fdf) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs12(yvy89, yvy90, cba, cbb, cbc) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bhg) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bhg), bhg) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgf)) -> new_esEs26(yvy4000, yvy3000, dgf) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, daa)) -> new_esEs26(yvy890, yvy900, daa) new_lt21(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_lt10(yvy165, yvy167, ehc) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_lt5(yvy890, yvy900, ceh, cfa) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dec), ded), dee)) -> new_ltEs12(yvy103, yvy104, dec, ded, dee) new_lt12(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_lt19(yvy890, yvy900, cef, ceg) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egf)) -> new_ltEs13(yvy166, yvy168, egf) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cac) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cac), cac) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, eb), ec)) -> new_esEs19(yvy40001, yvy30001, eb, ec) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], eca)) -> new_esEs17(yvy40001, yvy30001, eca) new_compare7(Nothing, Just(yvy3000), cac) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, gg), gh), ha), gf) -> new_esEs13(yvy40000, yvy30000, gg, gh, ha) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgd)) -> new_ltEs9(yvy96, yvy97, bgd) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fae, faf, fag) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_ltEs12(yvy154, yvy157, fbe, fbf, fbg) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_esEs26(yvy891, yvy901, ccf) new_ltEs21(yvy103, yvy104, app(app(ty_Either, deg), deh)) -> new_ltEs5(yvy103, yvy104, deg, deh) new_esEs33(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_esEs26(yvy890, yvy900, cdh) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, gc, gd) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, daf)) -> new_lt4(yvy890, yvy900, daf) new_compare16(yvy189, yvy190, False, bec) -> GT new_compare24(yvy96, yvy97, False, bgb, bgc) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgb), bgb, bgc) new_ltEs22(yvy166, yvy168, app(app(ty_Either, egg), egh)) -> new_ltEs5(yvy166, yvy168, egg, egh) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hb), hc), gf) -> new_esEs19(yvy40000, yvy30000, hb, hc) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, eda)) -> new_esEs23(yvy40001, yvy30001, eda) new_lt23(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_lt19(yvy153, yvy156, fdc, fdd) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, egc), egd), ege)) -> new_ltEs12(yvy166, yvy168, egc, egd, ege) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_lt5(yvy153, yvy156, fde, fdf) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_@2, bae), baf)) -> new_esEs19(yvy40000, yvy30000, bae, baf) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbd)) -> new_ltEs9(yvy892, yvy902, cbd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhd), bhe)) -> new_ltEs17(yvy96, yvy97, bhd, bhe) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dce)) -> new_esEs17(yvy4000, yvy3000, dce) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfb)) -> new_ltEs13(yvy89, yvy90, cfb) new_esEs34(yvy890, yvy900, app(ty_[], dab)) -> new_esEs17(yvy890, yvy900, dab) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, feh)) -> new_esEs26(yvy4000, yvy3000, feh) new_compare110(yvy205, yvy206, False, ebf, ebg) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs13(yvy891, yvy901, cch, cda, cdb) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbc) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dab)) -> new_lt6(yvy890, yvy900, dab) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bea, beb) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eea), eeb)) -> new_esEs22(yvy40000, yvy30000, eea, eeb) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fbh)) -> new_ltEs13(yvy154, yvy157, fbh) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], beg) -> False new_esEs17([], :(yvy30000, yvy30001), beg) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_lt5(yvy152, yvy155, bf, bg) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_lt19(yvy152, yvy155, dfc, dfd) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcd)) -> new_esEs26(yvy4001, yvy3001, dcd) new_ltEs21(yvy103, yvy104, app(ty_[], deb)) -> new_ltEs11(yvy103, yvy104, deb) new_ltEs13(Nothing, Just(yvy900), cfb) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhc), dhd)) -> new_esEs19(yvy4002, yvy3002, dhc, dhd) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, fdh), fea), feb)) -> new_esEs13(yvy4000, yvy3000, fdh, fea, feb) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eec)) -> new_esEs23(yvy40000, yvy30000, eec) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs12(EQ, EQ) new_compare13(x0, x1, x2, x3, False, x4, x5) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(EQ, LT) new_compare28(LT, EQ) new_compare16(x0, x1, False, x2) new_compare14(x0, x1, True, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt21(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Float) new_fsEs(x0) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Ordering) new_esEs23(Just(x0), Nothing, x1) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt22(x0, x1, app(ty_[], x2)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare7(Just(x0), Just(x1), x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_lt23(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs39(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_compare28(GT, GT) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_ltEs24(x0, x1, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_esEs17([], [], x0) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Double) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare212(x0, x1, False, x2) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare7(Nothing, Nothing, x0) new_lt23(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1, x2) new_primPlusNat0(Zero, Succ(x0)) new_compare110(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_ltEs11(x0, x1, x2) new_lt21(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs22(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs10(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True, x2) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_lt6(x0, x1, x2) new_esEs33(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Int) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_compare25(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_lt5(x0, x1, x2, x3) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs14(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_compare24(x0, x1, True, x2, x3) new_esEs18(False, True) new_esEs18(True, False) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_compare19(False, False) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs32(x0, x1, app(ty_[], x2)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Zero) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_esEs16(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_ltEs13(Just(x0), Nothing, x1) new_lt12(x0, x1, ty_Int) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Float) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_lt10(x0, x1, x2) new_esEs31(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCompAux00(x0, EQ) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_compare212(x0, x1, True, x2) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_esEs17([], :(x0, x1), x2) new_asAs(False, x0) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs33(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt22(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs37(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Nothing, Nothing, x0) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Zero, Zero) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_lt19(x0, x1, x2, x3) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_pePe(False, x0) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Integer) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_lt16(x0, x1, x2, x3, x4) new_esEs6(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Float) new_ltEs13(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, ty_Char) new_compare211(x0, x1, True, x2, x3) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Int) new_compare7(Nothing, Just(x0), x1) new_ltEs21(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare6(x0, x1) new_lt13(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Int) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Zero) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_esEs36(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, x0) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_esEs23(Nothing, Just(x0), x1) new_ltEs13(Nothing, Nothing, x0) new_lt7(x0, x1) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs18(False, False) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Float) new_esEs23(Just(x0), Just(x1), ty_@0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(ty_[], x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_ltEs19(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Ordering) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_lt21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(x0, x1, ty_Ordering) new_ltEs9(x0, x1, x2) new_esEs35(x0, x1, ty_Double) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt12(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare28(LT, LT) new_esEs25(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(x0, x1) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_compare14(x0, x1, False, x2, x3) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Float) new_compare211(x0, x1, False, x2, x3) new_esEs14(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Bool) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_compare110(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_ltEs22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_compare25(x0, x1, app(ty_[], x2)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs11(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_not(False) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_esEs39(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_compare25(x0, x1, app(ty_Ratio, x2)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs15(x0, x1, ty_Float) new_compare24(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs38(x0, x1, ty_@0) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs15(x0, x1, ty_Char) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_compare7(Just(x0), Nothing, x1) new_esEs4(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt11(x0, x1, ty_Float) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare19(True, False) new_compare19(False, True) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) new_esEs17(:(x0, x1), [], x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (79) 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_compare25(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_compare25(yvy400, yvy500, h)), h, ba)) ---------------------------------------- (80) 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_compare25(yvy400, yvy500, h)), h, ba) The TRS R consists of the following rules: new_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbf), bbg), bbh), bbc) -> new_ltEs12(yvy890, yvy900, bbf, bbg, bbh) new_ltEs20(yvy891, yvy901, app(ty_[], cgh)) -> new_ltEs11(yvy891, yvy901, cgh) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_lt5(yvy891, yvy901, cdf, cdg) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Maybe, bdd)) -> new_ltEs13(yvy890, yvy900, bdd) new_lt20(yvy890, yvy900, app(ty_Ratio, daa)) -> new_lt10(yvy890, yvy900, daa) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cgc), cgd)) -> new_ltEs17(yvy890, yvy900, cgc, cgd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_lt19(yvy891, yvy901, cdd, cde) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fah, fba, fbb) -> new_esEs12(new_compare27(yvy152, yvy155, fah, fba, fbb), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_esEs19(yvy152, yvy155, bf, bg) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bca), bbc) -> new_ltEs13(yvy890, yvy900, bca) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cfh)) -> new_ltEs13(yvy890, yvy900, cfh) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eee)) -> new_esEs17(yvy40000, yvy30000, eee) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bea, beb) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebc, ebd) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebc), new_esEs35(yvy40001, yvy30001, ebd)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], ge), gf) -> new_esEs17(yvy40000, yvy30000, ge) new_compare25(yvy400, yvy300, app(ty_Ratio, bhf)) -> new_compare26(yvy400, yvy300, bhf) new_lt19(yvy152, yvy155, dfc, dfd) -> new_esEs12(new_compare30(yvy152, yvy155, dfc, dfd), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bed)) -> new_lt6(yvy152, yvy155, bed) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hf), gf) -> new_esEs23(yvy40000, yvy30000, hf) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fcf)) -> new_esEs17(yvy153, yvy156, fcf) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_lt16(yvy165, yvy167, ehe, ehf, ehg) new_esEs39(yvy152, yvy155, app(ty_Ratio, cah)) -> new_esEs26(yvy152, yvy155, cah) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_lt16(yvy891, yvy901, cch, cda, cdb) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_esEs23(yvy153, yvy156, fdb) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs13(yvy4001, yvy3001, dbd, dbe, dbf) new_lt21(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_lt19(yvy165, yvy167, faa, fab) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], beg)) -> new_esEs17(yvy4000, yvy3000, beg) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bcf, bbc) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gf) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbe)) -> new_ltEs11(yvy892, yvy902, cbe) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gf) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cea)) -> new_esEs17(yvy890, yvy900, cea) new_lt21(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_lt5(yvy165, yvy167, fac, fad) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, bc, bd, be) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_lt4(yvy153, yvy156, fdb) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_esEs22(yvy165, yvy167, faa, fab) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fca), fcb)) -> new_ltEs5(yvy154, yvy157, fca, fcb) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs13(yvy40000, yvy30000, bfa, bfb, bfc) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs13(yvy4002, yvy3002, dgh, dha, dhb) new_esEs23(Nothing, Just(yvy30000), ebe) -> False new_esEs23(Just(yvy40000), Nothing, ebe) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gf) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cgg)) -> new_ltEs9(yvy891, yvy901, cgg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_[], baa)) -> new_esEs17(yvy40000, yvy30000, baa) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cge, cgf) -> new_pePe(new_lt20(yvy890, yvy900, cge), new_asAs(new_esEs34(yvy890, yvy900, cge), new_ltEs20(yvy891, yvy901, cgf))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, de)) -> new_esEs26(yvy40002, yvy30002, de) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_esEs22(yvy153, yvy156, fdc, fdd) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bec) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], ccg)) -> new_lt6(yvy891, yvy901, ccg) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbc) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fec), fed)) -> new_esEs19(yvy4000, yvy3000, fec, fed) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebe) -> True new_lt12(yvy890, yvy900, app(ty_[], cea)) -> new_lt6(yvy890, yvy900, cea) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, daf)) -> new_esEs23(yvy890, yvy900, daf) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfe)) -> new_esEs17(yvy4000, yvy3000, dfe) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bga)) -> new_esEs26(yvy40000, yvy30000, bga) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], bef)) -> new_ltEs11(yvy89, yvy90, bef) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bge)) -> new_ltEs11(yvy96, yvy97, bge) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, fg), fh)) -> new_esEs22(yvy40000, yvy30000, fg, fh) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbc) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fae, faf, fag) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fae), new_asAs(new_esEs39(yvy152, yvy155, fae), new_pePe(new_lt23(yvy153, yvy156, faf), new_asAs(new_esEs38(yvy153, yvy156, faf), new_ltEs23(yvy154, yvy157, fag)))), fae, faf, fag) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcb), bcc), bbc) -> new_ltEs5(yvy890, yvy900, bcb, bcc) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, cee)) -> new_esEs23(yvy890, yvy900, cee) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cac)) -> new_compare7(yvy400, yvy300, cac) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edb)) -> new_esEs26(yvy40001, yvy30001, edb) new_lt22(yvy152, yvy155, app(ty_Maybe, bb)) -> new_lt4(yvy152, yvy155, bb) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, bef) -> new_fsEs(new_compare0(yvy89, yvy90, bef)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) new_compare30(Right(yvy4000), Right(yvy3000), cad, cae) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cae), cad, cae) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_lt16(yvy152, yvy155, fah, fba, fbb) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, cha), chb), chc)) -> new_ltEs12(yvy891, yvy901, cha, chb, chc) new_compare110(yvy205, yvy206, True, ebf, ebg) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehd)) -> new_esEs17(yvy165, yvy167, ehd) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, cg), da)) -> new_esEs19(yvy40002, yvy30002, cg, da) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), bee) -> new_asAs(new_esEs30(yvy40000, yvy30000, bee), new_esEs29(yvy40001, yvy30001, bee)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efe)) -> new_esEs23(yvy40000, yvy30000, efe) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dga), dgb)) -> new_esEs19(yvy4000, yvy3000, dga, dgb) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bfd), bfe)) -> new_esEs19(yvy40000, yvy30000, bfd, bfe) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Maybe, bba)) -> new_esEs23(yvy40000, yvy30000, bba) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efc), efd)) -> new_esEs22(yvy40000, yvy30000, efc, efd) new_esEs33(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_esEs22(yvy890, yvy900, cef, ceg) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_esEs13(yvy40001, yvy30001, ecb, ecc, ecd) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs12(yvy892, yvy902, cbf, cbg, cbh) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fcf)) -> new_lt6(yvy153, yvy156, fcf) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cba, cbb, cbc) -> new_pePe(new_lt12(yvy890, yvy900, cba), new_asAs(new_esEs33(yvy890, yvy900, cba), new_pePe(new_lt11(yvy891, yvy901, cbb), new_asAs(new_esEs32(yvy891, yvy901, cbb), new_ltEs19(yvy892, yvy902, cbc))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bh, ca, cb) -> new_asAs(new_esEs16(yvy40000, yvy30000, bh), new_asAs(new_esEs15(yvy40001, yvy30001, ca), new_esEs14(yvy40002, yvy30002, cb))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, gc, gd) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chd)) -> new_ltEs13(yvy891, yvy901, chd) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], eh)) -> new_esEs17(yvy40000, yvy30000, eh) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dgc), dgd)) -> new_esEs22(yvy4000, yvy3000, dgc, dgd) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cfd)) -> new_ltEs11(yvy890, yvy900, cfd) new_esEs39(yvy152, yvy155, app(ty_[], bed)) -> new_esEs17(yvy152, yvy155, bed) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, ga)) -> new_esEs23(yvy40000, yvy30000, ga) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_[], bch)) -> new_ltEs11(yvy890, yvy900, bch) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Ratio, bcg)) -> new_ltEs9(yvy890, yvy900, bcg) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_lt16(yvy890, yvy900, ceb, cec, ced) new_esEs39(yvy152, yvy155, app(ty_Maybe, bb)) -> new_esEs23(yvy152, yvy155, bb) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eed)) -> new_esEs26(yvy40000, yvy30000, eed) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], beg) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs12(yvy890, yvy900, cfe, cff, cfg) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_esEs22(yvy891, yvy901, cdd, cde) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eag), eah)) -> new_esEs22(yvy4001, yvy3001, eag, eah) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hd), he), gf) -> new_esEs22(yvy40000, yvy30000, hd, he) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs12(yvy96, yvy97, bgf, bgg, bgh) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cga), cgb)) -> new_ltEs5(yvy890, yvy900, cga, cgb) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), caf, cag) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, caf), new_esEs10(yvy4001, yvy3001, cag)), caf, cag) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbc)) -> new_ltEs9(yvy154, yvy157, fbc) new_lt23(yvy153, yvy156, app(ty_Ratio, fce)) -> new_lt10(yvy153, yvy156, fce) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbc) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs13(yvy40000, yvy30000, edd, ede, edf) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, dhh)) -> new_esEs26(yvy4002, yvy3002, dhh) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_esEs23(yvy891, yvy901, cdc) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fgc) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, eha), ehb)) -> new_ltEs17(yvy166, yvy168, eha, ehb) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eba)) -> new_esEs23(yvy4001, yvy3001, eba) new_compare25(yvy400, yvy300, app(app(app(ty_@3, bhh), caa), cab)) -> new_compare27(yvy400, yvy300, bhh, caa, cab) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs13(yvy40000, yvy30000, fa, fb, fc) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_esEs13(yvy152, yvy155, fah, fba, fbb) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dda), ddb)) -> new_esEs19(yvy4000, yvy3000, dda, ddb) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs13(yvy40000, yvy30000, eef, eeg, eeh) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bha)) -> new_ltEs13(yvy96, yvy97, bha) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ece), ecf)) -> new_esEs19(yvy40001, yvy30001, ece, ecf) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fcc), fcd)) -> new_ltEs17(yvy154, yvy157, fcc, fcd) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs13(yvy153, yvy156, fcg, fch, fda) new_lt5(yvy152, yvy155, bf, bg) -> new_esEs12(new_compare8(yvy152, yvy155, bf, bg), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs13(yvy40001, yvy30001, dg, dh, ea) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, cee)) -> new_lt4(yvy890, yvy900, cee) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dbg), dbh)) -> new_esEs19(yvy4001, yvy3001, dbg, dbh) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs13(yvy40002, yvy30002, cd, ce, cf) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dge)) -> new_esEs23(yvy4000, yvy3000, dge) new_esEs33(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_esEs19(yvy890, yvy900, ceh, cfa) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffe), fff)) -> new_esEs19(yvy4000, yvy3000, ffe, fff) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy89, yvy90, cge, cgf) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs13(yvy165, yvy167, ehe, ehf, ehg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Ratio, bbb)) -> new_esEs26(yvy40000, yvy30000, bbb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gf) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gb)) -> new_esEs26(yvy40000, yvy30000, gb) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), beg) -> new_asAs(new_esEs31(yvy40000, yvy30000, beg), new_esEs17(yvy40001, yvy30001, beg)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, efg, efh) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gf) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebe)) -> new_esEs23(yvy4000, yvy3000, ebe) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ebh) -> new_fsEs(new_compare26(yvy89, yvy90, ebh)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, ddg, ddh) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, ddh), ddg, ddh) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, eg)) -> new_esEs26(yvy40001, yvy30001, eg) new_compare25(yvy400, yvy300, app(app(ty_@2, caf), cag)) -> new_compare8(yvy400, yvy300, caf, cag) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fce)) -> new_esEs26(yvy153, yvy156, fce) new_esEs5(yvy4001, yvy3001, app(ty_[], eaa)) -> new_esEs17(yvy4001, yvy3001, eaa) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, eff)) -> new_esEs26(yvy40000, yvy30000, eff) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ebh)) -> new_ltEs9(yvy89, yvy90, ebh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, hh), gf)) -> new_esEs22(yvy4000, yvy3000, hh, gf) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_esEs19(yvy890, yvy900, dba, dbb) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, cad), cae)) -> new_compare30(yvy400, yvy300, cad, cae) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs13(yvy40000, yvy30000, bab, bac, bad) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccb), ccc)) -> new_ltEs5(yvy892, yvy902, ccb, ccc) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gf) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_esEs26(yvy165, yvy167, ehc) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bfh)) -> new_esEs23(yvy40000, yvy30000, bfh) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_Either, bag), bah)) -> new_esEs22(yvy40000, yvy30000, bag, bah) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dgg)) -> new_esEs17(yvy4002, yvy3002, dgg) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, dhg)) -> new_esEs23(yvy4002, yvy3002, dhg) new_compare210(yvy165, yvy166, yvy167, yvy168, False, efg, efh) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, efg), new_asAs(new_esEs37(yvy165, yvy167, efg), new_ltEs22(yvy166, yvy168, efh)), efg, efh) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], beh)) -> new_esEs17(yvy40000, yvy30000, beh) new_ltEs21(yvy103, yvy104, app(ty_Maybe, def)) -> new_ltEs13(yvy103, yvy104, def) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fd), ff)) -> new_esEs19(yvy40000, yvy30000, fd, ff) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], df)) -> new_esEs17(yvy40001, yvy30001, df) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs13(yvy890, yvy900, ceb, cec, ced) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbc) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, ega)) -> new_ltEs9(yvy166, yvy168, ega) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cah) -> new_esEs12(new_compare26(yvy152, yvy155, cah), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), cad, cae) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, fee), fef)) -> new_esEs22(yvy4000, yvy3000, fee, fef) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs13(yvy4000, yvy3000, bh, ca, cb) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, ecg), ech)) -> new_esEs22(yvy40001, yvy30001, ecg, ech) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, ef)) -> new_esEs23(yvy40001, yvy30001, ef) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bff), bfg)) -> new_esEs22(yvy40000, yvy30000, bff, bfg) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egb)) -> new_ltEs11(yvy166, yvy168, egb) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_esEs19(yvy891, yvy901, cdf, cdg) new_compare0([], :(yvy3000, yvy3001), bhg) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhe), dhf)) -> new_esEs22(yvy4002, yvy3002, dhe, dhf) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bcf, bbc) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eae), eaf)) -> new_esEs19(yvy4001, yvy3001, eae, eaf) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], bhg)) -> new_compare0(yvy400, yvy300, bhg) new_esEs10(yvy4001, yvy3001, app(ty_[], dbc)) -> new_esEs17(yvy4001, yvy3001, dbc) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gf) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_lt10(yvy890, yvy900, cdh) new_ltEs20(yvy891, yvy901, app(app(ty_Either, che), chf)) -> new_ltEs5(yvy891, yvy901, che, chf) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgb, bgc) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, db), dc)) -> new_esEs22(yvy40002, yvy30002, db, dc) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbc) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_lt16(yvy153, yvy156, fcg, fch, fda) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffa)) -> new_esEs17(yvy4000, yvy3000, ffa) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_Either, bde), bdf)) -> new_ltEs5(yvy890, yvy900, bde, bdf) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], bhg) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], edc)) -> new_esEs17(yvy40000, yvy30000, edc) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), cad, cae) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fdg)) -> new_esEs17(yvy4000, yvy3000, fdg) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcd), bce), bbc) -> new_ltEs17(yvy890, yvy900, bcd, bce) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, bee)) -> new_esEs26(yvy4000, yvy3000, bee) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfb) -> True new_ltEs13(Just(yvy890), Nothing, cfb) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, feg)) -> new_esEs23(yvy4000, yvy3000, feg) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ed), ee)) -> new_esEs22(yvy40001, yvy30001, ed, ee) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, edg), edh)) -> new_esEs19(yvy40000, yvy30000, edg, edh) new_ltEs19(yvy892, yvy902, app(ty_Maybe, cca)) -> new_ltEs13(yvy892, yvy902, cca) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_@2, bdg), bdh)) -> new_ltEs17(yvy890, yvy900, bdg, bdh) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_lt4(yvy165, yvy167, ehh) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fgc) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fgc), fgc) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebc), ebd)) -> new_esEs19(yvy4000, yvy3000, ebc, ebd) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebb)) -> new_esEs26(yvy4001, yvy3001, ebb) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_lt4(yvy891, yvy901, cdc) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dde)) -> new_esEs23(yvy4000, yvy3000, dde) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_esEs22(yvy152, yvy155, dfc, dfd) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_esEs19(yvy165, yvy167, fac, fad) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ffg), ffh)) -> new_esEs22(yvy4000, yvy3000, ffg, ffh) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], cc)) -> new_esEs17(yvy40002, yvy30002, cc) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_lt10(yvy891, yvy901, ccf) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bcf), bbc)) -> new_ltEs5(yvy89, yvy90, bcf, bbc) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfa), dfb)) -> new_ltEs17(yvy103, yvy104, dfa, dfb) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, eab), eac), ead)) -> new_esEs13(yvy4001, yvy3001, eab, eac, ead) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dcc)) -> new_esEs23(yvy4001, yvy3001, dcc) new_lt22(yvy152, yvy155, app(ty_Ratio, cah)) -> new_lt10(yvy152, yvy155, cah) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbd)) -> new_ltEs11(yvy154, yvy157, fbd) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cac) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhb), bhc)) -> new_ltEs5(yvy96, yvy97, bhb, bhc) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bhh, caa, cab) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bhh), new_asAs(new_esEs5(yvy4001, yvy3001, caa), new_esEs4(yvy4002, yvy3002, cab))), bhh, caa, cab) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], ccg)) -> new_esEs17(yvy891, yvy901, ccg) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fga)) -> new_esEs23(yvy4000, yvy3000, fga) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, ddg, ddh) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dca), dcb)) -> new_esEs22(yvy4001, yvy3001, dca, dcb) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs12(yvy890, yvy900, bda, bdb, bdc) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbe), bbc) -> new_ltEs11(yvy890, yvy900, bbe) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bb) -> new_esEs12(new_compare7(yvy152, yvy155, bb), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs13(yvy890, yvy900, dac, dad, dae) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs13(yvy4000, yvy3000, dff, dfg, dfh) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gf) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efa), efb)) -> new_esEs19(yvy40000, yvy30000, efa, efb) new_compare7(Nothing, Nothing, cac) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dea)) -> new_ltEs9(yvy103, yvy104, dea) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, bc, bd, be) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_esEs22(yvy890, yvy900, dag, dah) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) -> LT new_lt6(yvy152, yvy155, bed) -> new_esEs12(new_compare0(yvy152, yvy155, bed), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs13(yvy4000, yvy3000, dcf, dcg, dch) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, ddc), ddd)) -> new_esEs22(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_lt16(yvy890, yvy900, dac, dad, dae) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbc) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs26(yvy4000, yvy3000, fgb) new_ltEs20(yvy891, yvy901, app(app(ty_@2, chg), chh)) -> new_ltEs17(yvy891, yvy901, chg, chh) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), hh, gf) -> False new_esEs22(Right(yvy40000), Left(yvy30000), hh, gf) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbd), bbc) -> new_ltEs9(yvy890, yvy900, bbd) new_compare0(:(yvy4000, yvy4001), [], bhg) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_lt5(yvy890, yvy900, dba, dbb) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbc) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_lt19(yvy890, yvy900, dag, dah) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, dd)) -> new_esEs23(yvy40002, yvy30002, dd) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccd), cce)) -> new_ltEs17(yvy892, yvy902, ccd, cce) new_compare30(Left(yvy4000), Left(yvy3000), cad, cae) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, cad), cad, cae) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehd)) -> new_lt6(yvy165, yvy167, ehd) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_esEs23(yvy165, yvy167, ehh) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs13(yvy4000, yvy3000, ffb, ffc, ffd) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddf)) -> new_esEs26(yvy4000, yvy3000, ddf) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, hg), gf) -> new_esEs26(yvy40000, yvy30000, hg) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfc)) -> new_ltEs9(yvy890, yvy900, cfc) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_esEs19(yvy153, yvy156, fde, fdf) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs12(yvy89, yvy90, cba, cbb, cbc) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bhg) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bhg), bhg) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgf)) -> new_esEs26(yvy4000, yvy3000, dgf) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, daa)) -> new_esEs26(yvy890, yvy900, daa) new_lt21(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_lt10(yvy165, yvy167, ehc) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_lt5(yvy890, yvy900, ceh, cfa) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dec), ded), dee)) -> new_ltEs12(yvy103, yvy104, dec, ded, dee) new_lt12(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_lt19(yvy890, yvy900, cef, ceg) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egf)) -> new_ltEs13(yvy166, yvy168, egf) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cac) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cac), cac) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, eb), ec)) -> new_esEs19(yvy40001, yvy30001, eb, ec) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], eca)) -> new_esEs17(yvy40001, yvy30001, eca) new_compare7(Nothing, Just(yvy3000), cac) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, gg), gh), ha), gf) -> new_esEs13(yvy40000, yvy30000, gg, gh, ha) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgd)) -> new_ltEs9(yvy96, yvy97, bgd) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fae, faf, fag) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_ltEs12(yvy154, yvy157, fbe, fbf, fbg) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_esEs26(yvy891, yvy901, ccf) new_ltEs21(yvy103, yvy104, app(app(ty_Either, deg), deh)) -> new_ltEs5(yvy103, yvy104, deg, deh) new_esEs33(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_esEs26(yvy890, yvy900, cdh) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, gc, gd) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, daf)) -> new_lt4(yvy890, yvy900, daf) new_compare16(yvy189, yvy190, False, bec) -> GT new_compare24(yvy96, yvy97, False, bgb, bgc) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgb), bgb, bgc) new_ltEs22(yvy166, yvy168, app(app(ty_Either, egg), egh)) -> new_ltEs5(yvy166, yvy168, egg, egh) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hb), hc), gf) -> new_esEs19(yvy40000, yvy30000, hb, hc) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, eda)) -> new_esEs23(yvy40001, yvy30001, eda) new_lt23(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_lt19(yvy153, yvy156, fdc, fdd) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, egc), egd), ege)) -> new_ltEs12(yvy166, yvy168, egc, egd, ege) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_lt5(yvy153, yvy156, fde, fdf) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_@2, bae), baf)) -> new_esEs19(yvy40000, yvy30000, bae, baf) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbd)) -> new_ltEs9(yvy892, yvy902, cbd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhd), bhe)) -> new_ltEs17(yvy96, yvy97, bhd, bhe) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dce)) -> new_esEs17(yvy4000, yvy3000, dce) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfb)) -> new_ltEs13(yvy89, yvy90, cfb) new_esEs34(yvy890, yvy900, app(ty_[], dab)) -> new_esEs17(yvy890, yvy900, dab) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, feh)) -> new_esEs26(yvy4000, yvy3000, feh) new_compare110(yvy205, yvy206, False, ebf, ebg) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs13(yvy891, yvy901, cch, cda, cdb) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbc) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dab)) -> new_lt6(yvy890, yvy900, dab) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bea, beb) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eea), eeb)) -> new_esEs22(yvy40000, yvy30000, eea, eeb) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fbh)) -> new_ltEs13(yvy154, yvy157, fbh) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], beg) -> False new_esEs17([], :(yvy30000, yvy30001), beg) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_lt5(yvy152, yvy155, bf, bg) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_lt19(yvy152, yvy155, dfc, dfd) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcd)) -> new_esEs26(yvy4001, yvy3001, dcd) new_ltEs21(yvy103, yvy104, app(ty_[], deb)) -> new_ltEs11(yvy103, yvy104, deb) new_ltEs13(Nothing, Just(yvy900), cfb) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhc), dhd)) -> new_esEs19(yvy4002, yvy3002, dhc, dhd) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, fdh), fea), feb)) -> new_esEs13(yvy4000, yvy3000, fdh, fea, feb) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eec)) -> new_esEs23(yvy40000, yvy30000, eec) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs12(EQ, EQ) new_compare13(x0, x1, x2, x3, False, x4, x5) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(EQ, LT) new_compare28(LT, EQ) new_compare16(x0, x1, False, x2) new_compare14(x0, x1, True, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt21(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Float) new_fsEs(x0) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Ordering) new_esEs23(Just(x0), Nothing, x1) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt22(x0, x1, app(ty_[], x2)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare7(Just(x0), Just(x1), x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_lt23(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs39(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_compare28(GT, GT) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_ltEs24(x0, x1, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_esEs17([], [], x0) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Double) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare212(x0, x1, False, x2) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare7(Nothing, Nothing, x0) new_lt23(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1, x2) new_primPlusNat0(Zero, Succ(x0)) new_compare110(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_ltEs11(x0, x1, x2) new_lt21(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs22(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs10(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True, x2) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_lt6(x0, x1, x2) new_esEs33(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Int) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_compare25(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_lt5(x0, x1, x2, x3) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs14(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_compare24(x0, x1, True, x2, x3) new_esEs18(False, True) new_esEs18(True, False) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_compare19(False, False) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs32(x0, x1, app(ty_[], x2)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Zero) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_esEs16(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_ltEs13(Just(x0), Nothing, x1) new_lt12(x0, x1, ty_Int) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Float) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_lt10(x0, x1, x2) new_esEs31(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCompAux00(x0, EQ) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_compare212(x0, x1, True, x2) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_esEs17([], :(x0, x1), x2) new_asAs(False, x0) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs33(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt22(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs37(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Nothing, Nothing, x0) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Zero, Zero) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_lt19(x0, x1, x2, x3) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_pePe(False, x0) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Integer) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_lt16(x0, x1, x2, x3, x4) new_esEs6(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Float) new_ltEs13(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, ty_Char) new_compare211(x0, x1, True, x2, x3) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Int) new_compare7(Nothing, Just(x0), x1) new_ltEs21(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare6(x0, x1) new_lt13(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Int) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Zero) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_esEs36(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, x0) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_esEs23(Nothing, Just(x0), x1) new_ltEs13(Nothing, Nothing, x0) new_lt7(x0, x1) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs18(False, False) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Float) new_esEs23(Just(x0), Just(x1), ty_@0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(ty_[], x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_ltEs19(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Ordering) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_lt21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(x0, x1, ty_Ordering) new_ltEs9(x0, x1, x2) new_esEs35(x0, x1, ty_Double) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt12(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare28(LT, LT) new_esEs25(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(x0, x1) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_compare14(x0, x1, False, x2, x3) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Float) new_compare211(x0, x1, False, x2, x3) new_esEs14(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Bool) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_compare110(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_ltEs22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_compare25(x0, x1, app(ty_[], x2)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs11(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_not(False) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_esEs39(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_compare25(x0, x1, app(ty_Ratio, x2)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs15(x0, x1, ty_Float) new_compare24(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs38(x0, x1, ty_@0) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs15(x0, x1, ty_Char) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_compare7(Just(x0), Nothing, x1) new_esEs4(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt11(x0, x1, ty_Float) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare19(True, False) new_compare19(False, True) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) new_esEs17(:(x0, x1), [], x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (81) 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)) ---------------------------------------- (82) 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_compare25(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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbf), bbg), bbh), bbc) -> new_ltEs12(yvy890, yvy900, bbf, bbg, bbh) new_ltEs20(yvy891, yvy901, app(ty_[], cgh)) -> new_ltEs11(yvy891, yvy901, cgh) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_lt5(yvy891, yvy901, cdf, cdg) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Maybe, bdd)) -> new_ltEs13(yvy890, yvy900, bdd) new_lt20(yvy890, yvy900, app(ty_Ratio, daa)) -> new_lt10(yvy890, yvy900, daa) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cgc), cgd)) -> new_ltEs17(yvy890, yvy900, cgc, cgd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_lt19(yvy891, yvy901, cdd, cde) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fah, fba, fbb) -> new_esEs12(new_compare27(yvy152, yvy155, fah, fba, fbb), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_esEs19(yvy152, yvy155, bf, bg) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bca), bbc) -> new_ltEs13(yvy890, yvy900, bca) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cfh)) -> new_ltEs13(yvy890, yvy900, cfh) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eee)) -> new_esEs17(yvy40000, yvy30000, eee) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bea, beb) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebc, ebd) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebc), new_esEs35(yvy40001, yvy30001, ebd)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], ge), gf) -> new_esEs17(yvy40000, yvy30000, ge) new_compare25(yvy400, yvy300, app(ty_Ratio, bhf)) -> new_compare26(yvy400, yvy300, bhf) new_lt19(yvy152, yvy155, dfc, dfd) -> new_esEs12(new_compare30(yvy152, yvy155, dfc, dfd), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bed)) -> new_lt6(yvy152, yvy155, bed) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hf), gf) -> new_esEs23(yvy40000, yvy30000, hf) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fcf)) -> new_esEs17(yvy153, yvy156, fcf) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_lt16(yvy165, yvy167, ehe, ehf, ehg) new_esEs39(yvy152, yvy155, app(ty_Ratio, cah)) -> new_esEs26(yvy152, yvy155, cah) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_lt16(yvy891, yvy901, cch, cda, cdb) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_esEs23(yvy153, yvy156, fdb) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs13(yvy4001, yvy3001, dbd, dbe, dbf) new_lt21(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_lt19(yvy165, yvy167, faa, fab) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], beg)) -> new_esEs17(yvy4000, yvy3000, beg) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bcf, bbc) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gf) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbe)) -> new_ltEs11(yvy892, yvy902, cbe) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gf) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cea)) -> new_esEs17(yvy890, yvy900, cea) new_lt21(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_lt5(yvy165, yvy167, fac, fad) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, bc, bd, be) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_lt4(yvy153, yvy156, fdb) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_esEs22(yvy165, yvy167, faa, fab) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fca), fcb)) -> new_ltEs5(yvy154, yvy157, fca, fcb) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs13(yvy40000, yvy30000, bfa, bfb, bfc) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs13(yvy4002, yvy3002, dgh, dha, dhb) new_esEs23(Nothing, Just(yvy30000), ebe) -> False new_esEs23(Just(yvy40000), Nothing, ebe) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gf) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cgg)) -> new_ltEs9(yvy891, yvy901, cgg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_[], baa)) -> new_esEs17(yvy40000, yvy30000, baa) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cge, cgf) -> new_pePe(new_lt20(yvy890, yvy900, cge), new_asAs(new_esEs34(yvy890, yvy900, cge), new_ltEs20(yvy891, yvy901, cgf))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, de)) -> new_esEs26(yvy40002, yvy30002, de) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_esEs22(yvy153, yvy156, fdc, fdd) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bec) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], ccg)) -> new_lt6(yvy891, yvy901, ccg) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbc) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fec), fed)) -> new_esEs19(yvy4000, yvy3000, fec, fed) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebe) -> True new_lt12(yvy890, yvy900, app(ty_[], cea)) -> new_lt6(yvy890, yvy900, cea) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, daf)) -> new_esEs23(yvy890, yvy900, daf) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfe)) -> new_esEs17(yvy4000, yvy3000, dfe) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bga)) -> new_esEs26(yvy40000, yvy30000, bga) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], bef)) -> new_ltEs11(yvy89, yvy90, bef) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bge)) -> new_ltEs11(yvy96, yvy97, bge) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, fg), fh)) -> new_esEs22(yvy40000, yvy30000, fg, fh) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbc) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fae, faf, fag) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fae), new_asAs(new_esEs39(yvy152, yvy155, fae), new_pePe(new_lt23(yvy153, yvy156, faf), new_asAs(new_esEs38(yvy153, yvy156, faf), new_ltEs23(yvy154, yvy157, fag)))), fae, faf, fag) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcb), bcc), bbc) -> new_ltEs5(yvy890, yvy900, bcb, bcc) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, cee)) -> new_esEs23(yvy890, yvy900, cee) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cac)) -> new_compare7(yvy400, yvy300, cac) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edb)) -> new_esEs26(yvy40001, yvy30001, edb) new_lt22(yvy152, yvy155, app(ty_Maybe, bb)) -> new_lt4(yvy152, yvy155, bb) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, bef) -> new_fsEs(new_compare0(yvy89, yvy90, bef)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) new_compare30(Right(yvy4000), Right(yvy3000), cad, cae) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cae), cad, cae) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_lt16(yvy152, yvy155, fah, fba, fbb) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, cha), chb), chc)) -> new_ltEs12(yvy891, yvy901, cha, chb, chc) new_compare110(yvy205, yvy206, True, ebf, ebg) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehd)) -> new_esEs17(yvy165, yvy167, ehd) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, cg), da)) -> new_esEs19(yvy40002, yvy30002, cg, da) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), bee) -> new_asAs(new_esEs30(yvy40000, yvy30000, bee), new_esEs29(yvy40001, yvy30001, bee)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efe)) -> new_esEs23(yvy40000, yvy30000, efe) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dga), dgb)) -> new_esEs19(yvy4000, yvy3000, dga, dgb) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bfd), bfe)) -> new_esEs19(yvy40000, yvy30000, bfd, bfe) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Maybe, bba)) -> new_esEs23(yvy40000, yvy30000, bba) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efc), efd)) -> new_esEs22(yvy40000, yvy30000, efc, efd) new_esEs33(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_esEs22(yvy890, yvy900, cef, ceg) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_esEs13(yvy40001, yvy30001, ecb, ecc, ecd) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs12(yvy892, yvy902, cbf, cbg, cbh) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fcf)) -> new_lt6(yvy153, yvy156, fcf) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cba, cbb, cbc) -> new_pePe(new_lt12(yvy890, yvy900, cba), new_asAs(new_esEs33(yvy890, yvy900, cba), new_pePe(new_lt11(yvy891, yvy901, cbb), new_asAs(new_esEs32(yvy891, yvy901, cbb), new_ltEs19(yvy892, yvy902, cbc))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bh, ca, cb) -> new_asAs(new_esEs16(yvy40000, yvy30000, bh), new_asAs(new_esEs15(yvy40001, yvy30001, ca), new_esEs14(yvy40002, yvy30002, cb))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, gc, gd) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chd)) -> new_ltEs13(yvy891, yvy901, chd) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], eh)) -> new_esEs17(yvy40000, yvy30000, eh) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dgc), dgd)) -> new_esEs22(yvy4000, yvy3000, dgc, dgd) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cfd)) -> new_ltEs11(yvy890, yvy900, cfd) new_esEs39(yvy152, yvy155, app(ty_[], bed)) -> new_esEs17(yvy152, yvy155, bed) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, ga)) -> new_esEs23(yvy40000, yvy30000, ga) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_[], bch)) -> new_ltEs11(yvy890, yvy900, bch) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Ratio, bcg)) -> new_ltEs9(yvy890, yvy900, bcg) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_lt16(yvy890, yvy900, ceb, cec, ced) new_esEs39(yvy152, yvy155, app(ty_Maybe, bb)) -> new_esEs23(yvy152, yvy155, bb) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eed)) -> new_esEs26(yvy40000, yvy30000, eed) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], beg) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs12(yvy890, yvy900, cfe, cff, cfg) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_esEs22(yvy891, yvy901, cdd, cde) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eag), eah)) -> new_esEs22(yvy4001, yvy3001, eag, eah) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hd), he), gf) -> new_esEs22(yvy40000, yvy30000, hd, he) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs12(yvy96, yvy97, bgf, bgg, bgh) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cga), cgb)) -> new_ltEs5(yvy890, yvy900, cga, cgb) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), caf, cag) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, caf), new_esEs10(yvy4001, yvy3001, cag)), caf, cag) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbc)) -> new_ltEs9(yvy154, yvy157, fbc) new_lt23(yvy153, yvy156, app(ty_Ratio, fce)) -> new_lt10(yvy153, yvy156, fce) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbc) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs13(yvy40000, yvy30000, edd, ede, edf) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, dhh)) -> new_esEs26(yvy4002, yvy3002, dhh) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_esEs23(yvy891, yvy901, cdc) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fgc) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, eha), ehb)) -> new_ltEs17(yvy166, yvy168, eha, ehb) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eba)) -> new_esEs23(yvy4001, yvy3001, eba) new_compare25(yvy400, yvy300, app(app(app(ty_@3, bhh), caa), cab)) -> new_compare27(yvy400, yvy300, bhh, caa, cab) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs13(yvy40000, yvy30000, fa, fb, fc) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_esEs13(yvy152, yvy155, fah, fba, fbb) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dda), ddb)) -> new_esEs19(yvy4000, yvy3000, dda, ddb) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs13(yvy40000, yvy30000, eef, eeg, eeh) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bha)) -> new_ltEs13(yvy96, yvy97, bha) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ece), ecf)) -> new_esEs19(yvy40001, yvy30001, ece, ecf) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fcc), fcd)) -> new_ltEs17(yvy154, yvy157, fcc, fcd) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs13(yvy153, yvy156, fcg, fch, fda) new_lt5(yvy152, yvy155, bf, bg) -> new_esEs12(new_compare8(yvy152, yvy155, bf, bg), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs13(yvy40001, yvy30001, dg, dh, ea) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, cee)) -> new_lt4(yvy890, yvy900, cee) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dbg), dbh)) -> new_esEs19(yvy4001, yvy3001, dbg, dbh) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs13(yvy40002, yvy30002, cd, ce, cf) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dge)) -> new_esEs23(yvy4000, yvy3000, dge) new_esEs33(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_esEs19(yvy890, yvy900, ceh, cfa) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffe), fff)) -> new_esEs19(yvy4000, yvy3000, ffe, fff) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy89, yvy90, cge, cgf) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs13(yvy165, yvy167, ehe, ehf, ehg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Ratio, bbb)) -> new_esEs26(yvy40000, yvy30000, bbb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gf) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gb)) -> new_esEs26(yvy40000, yvy30000, gb) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), beg) -> new_asAs(new_esEs31(yvy40000, yvy30000, beg), new_esEs17(yvy40001, yvy30001, beg)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, efg, efh) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gf) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebe)) -> new_esEs23(yvy4000, yvy3000, ebe) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ebh) -> new_fsEs(new_compare26(yvy89, yvy90, ebh)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, ddg, ddh) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, ddh), ddg, ddh) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, eg)) -> new_esEs26(yvy40001, yvy30001, eg) new_compare25(yvy400, yvy300, app(app(ty_@2, caf), cag)) -> new_compare8(yvy400, yvy300, caf, cag) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fce)) -> new_esEs26(yvy153, yvy156, fce) new_esEs5(yvy4001, yvy3001, app(ty_[], eaa)) -> new_esEs17(yvy4001, yvy3001, eaa) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, eff)) -> new_esEs26(yvy40000, yvy30000, eff) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ebh)) -> new_ltEs9(yvy89, yvy90, ebh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, hh), gf)) -> new_esEs22(yvy4000, yvy3000, hh, gf) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_esEs19(yvy890, yvy900, dba, dbb) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, cad), cae)) -> new_compare30(yvy400, yvy300, cad, cae) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs13(yvy40000, yvy30000, bab, bac, bad) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccb), ccc)) -> new_ltEs5(yvy892, yvy902, ccb, ccc) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gf) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_esEs26(yvy165, yvy167, ehc) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bfh)) -> new_esEs23(yvy40000, yvy30000, bfh) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_Either, bag), bah)) -> new_esEs22(yvy40000, yvy30000, bag, bah) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dgg)) -> new_esEs17(yvy4002, yvy3002, dgg) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, dhg)) -> new_esEs23(yvy4002, yvy3002, dhg) new_compare210(yvy165, yvy166, yvy167, yvy168, False, efg, efh) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, efg), new_asAs(new_esEs37(yvy165, yvy167, efg), new_ltEs22(yvy166, yvy168, efh)), efg, efh) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], beh)) -> new_esEs17(yvy40000, yvy30000, beh) new_ltEs21(yvy103, yvy104, app(ty_Maybe, def)) -> new_ltEs13(yvy103, yvy104, def) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fd), ff)) -> new_esEs19(yvy40000, yvy30000, fd, ff) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], df)) -> new_esEs17(yvy40001, yvy30001, df) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs13(yvy890, yvy900, ceb, cec, ced) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbc) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, ega)) -> new_ltEs9(yvy166, yvy168, ega) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cah) -> new_esEs12(new_compare26(yvy152, yvy155, cah), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), cad, cae) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, fee), fef)) -> new_esEs22(yvy4000, yvy3000, fee, fef) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs13(yvy4000, yvy3000, bh, ca, cb) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, ecg), ech)) -> new_esEs22(yvy40001, yvy30001, ecg, ech) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, ef)) -> new_esEs23(yvy40001, yvy30001, ef) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bff), bfg)) -> new_esEs22(yvy40000, yvy30000, bff, bfg) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egb)) -> new_ltEs11(yvy166, yvy168, egb) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_esEs19(yvy891, yvy901, cdf, cdg) new_compare0([], :(yvy3000, yvy3001), bhg) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhe), dhf)) -> new_esEs22(yvy4002, yvy3002, dhe, dhf) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bcf, bbc) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eae), eaf)) -> new_esEs19(yvy4001, yvy3001, eae, eaf) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], bhg)) -> new_compare0(yvy400, yvy300, bhg) new_esEs10(yvy4001, yvy3001, app(ty_[], dbc)) -> new_esEs17(yvy4001, yvy3001, dbc) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gf) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_lt10(yvy890, yvy900, cdh) new_ltEs20(yvy891, yvy901, app(app(ty_Either, che), chf)) -> new_ltEs5(yvy891, yvy901, che, chf) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgb, bgc) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, db), dc)) -> new_esEs22(yvy40002, yvy30002, db, dc) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbc) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_lt16(yvy153, yvy156, fcg, fch, fda) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffa)) -> new_esEs17(yvy4000, yvy3000, ffa) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_Either, bde), bdf)) -> new_ltEs5(yvy890, yvy900, bde, bdf) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], bhg) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], edc)) -> new_esEs17(yvy40000, yvy30000, edc) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), cad, cae) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fdg)) -> new_esEs17(yvy4000, yvy3000, fdg) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcd), bce), bbc) -> new_ltEs17(yvy890, yvy900, bcd, bce) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, bee)) -> new_esEs26(yvy4000, yvy3000, bee) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfb) -> True new_ltEs13(Just(yvy890), Nothing, cfb) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, feg)) -> new_esEs23(yvy4000, yvy3000, feg) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ed), ee)) -> new_esEs22(yvy40001, yvy30001, ed, ee) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, edg), edh)) -> new_esEs19(yvy40000, yvy30000, edg, edh) new_ltEs19(yvy892, yvy902, app(ty_Maybe, cca)) -> new_ltEs13(yvy892, yvy902, cca) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_@2, bdg), bdh)) -> new_ltEs17(yvy890, yvy900, bdg, bdh) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_lt4(yvy165, yvy167, ehh) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fgc) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fgc), fgc) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebc), ebd)) -> new_esEs19(yvy4000, yvy3000, ebc, ebd) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebb)) -> new_esEs26(yvy4001, yvy3001, ebb) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_lt4(yvy891, yvy901, cdc) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dde)) -> new_esEs23(yvy4000, yvy3000, dde) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_esEs22(yvy152, yvy155, dfc, dfd) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_esEs19(yvy165, yvy167, fac, fad) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ffg), ffh)) -> new_esEs22(yvy4000, yvy3000, ffg, ffh) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], cc)) -> new_esEs17(yvy40002, yvy30002, cc) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_lt10(yvy891, yvy901, ccf) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bcf), bbc)) -> new_ltEs5(yvy89, yvy90, bcf, bbc) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfa), dfb)) -> new_ltEs17(yvy103, yvy104, dfa, dfb) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, eab), eac), ead)) -> new_esEs13(yvy4001, yvy3001, eab, eac, ead) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dcc)) -> new_esEs23(yvy4001, yvy3001, dcc) new_lt22(yvy152, yvy155, app(ty_Ratio, cah)) -> new_lt10(yvy152, yvy155, cah) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbd)) -> new_ltEs11(yvy154, yvy157, fbd) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cac) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhb), bhc)) -> new_ltEs5(yvy96, yvy97, bhb, bhc) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bhh, caa, cab) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bhh), new_asAs(new_esEs5(yvy4001, yvy3001, caa), new_esEs4(yvy4002, yvy3002, cab))), bhh, caa, cab) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], ccg)) -> new_esEs17(yvy891, yvy901, ccg) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fga)) -> new_esEs23(yvy4000, yvy3000, fga) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, ddg, ddh) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dca), dcb)) -> new_esEs22(yvy4001, yvy3001, dca, dcb) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs12(yvy890, yvy900, bda, bdb, bdc) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbe), bbc) -> new_ltEs11(yvy890, yvy900, bbe) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bb) -> new_esEs12(new_compare7(yvy152, yvy155, bb), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs13(yvy890, yvy900, dac, dad, dae) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs13(yvy4000, yvy3000, dff, dfg, dfh) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gf) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efa), efb)) -> new_esEs19(yvy40000, yvy30000, efa, efb) new_compare7(Nothing, Nothing, cac) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dea)) -> new_ltEs9(yvy103, yvy104, dea) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, bc, bd, be) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_esEs22(yvy890, yvy900, dag, dah) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) -> LT new_lt6(yvy152, yvy155, bed) -> new_esEs12(new_compare0(yvy152, yvy155, bed), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs13(yvy4000, yvy3000, dcf, dcg, dch) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, ddc), ddd)) -> new_esEs22(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_lt16(yvy890, yvy900, dac, dad, dae) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbc) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs26(yvy4000, yvy3000, fgb) new_ltEs20(yvy891, yvy901, app(app(ty_@2, chg), chh)) -> new_ltEs17(yvy891, yvy901, chg, chh) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), hh, gf) -> False new_esEs22(Right(yvy40000), Left(yvy30000), hh, gf) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbd), bbc) -> new_ltEs9(yvy890, yvy900, bbd) new_compare0(:(yvy4000, yvy4001), [], bhg) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_lt5(yvy890, yvy900, dba, dbb) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbc) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_lt19(yvy890, yvy900, dag, dah) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, dd)) -> new_esEs23(yvy40002, yvy30002, dd) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccd), cce)) -> new_ltEs17(yvy892, yvy902, ccd, cce) new_compare30(Left(yvy4000), Left(yvy3000), cad, cae) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, cad), cad, cae) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehd)) -> new_lt6(yvy165, yvy167, ehd) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_esEs23(yvy165, yvy167, ehh) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs13(yvy4000, yvy3000, ffb, ffc, ffd) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddf)) -> new_esEs26(yvy4000, yvy3000, ddf) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, hg), gf) -> new_esEs26(yvy40000, yvy30000, hg) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfc)) -> new_ltEs9(yvy890, yvy900, cfc) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_esEs19(yvy153, yvy156, fde, fdf) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs12(yvy89, yvy90, cba, cbb, cbc) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bhg) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bhg), bhg) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgf)) -> new_esEs26(yvy4000, yvy3000, dgf) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, daa)) -> new_esEs26(yvy890, yvy900, daa) new_lt21(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_lt10(yvy165, yvy167, ehc) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_lt5(yvy890, yvy900, ceh, cfa) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dec), ded), dee)) -> new_ltEs12(yvy103, yvy104, dec, ded, dee) new_lt12(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_lt19(yvy890, yvy900, cef, ceg) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egf)) -> new_ltEs13(yvy166, yvy168, egf) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cac) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cac), cac) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, eb), ec)) -> new_esEs19(yvy40001, yvy30001, eb, ec) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], eca)) -> new_esEs17(yvy40001, yvy30001, eca) new_compare7(Nothing, Just(yvy3000), cac) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, gg), gh), ha), gf) -> new_esEs13(yvy40000, yvy30000, gg, gh, ha) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgd)) -> new_ltEs9(yvy96, yvy97, bgd) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fae, faf, fag) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_ltEs12(yvy154, yvy157, fbe, fbf, fbg) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_esEs26(yvy891, yvy901, ccf) new_ltEs21(yvy103, yvy104, app(app(ty_Either, deg), deh)) -> new_ltEs5(yvy103, yvy104, deg, deh) new_esEs33(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_esEs26(yvy890, yvy900, cdh) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, gc, gd) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, daf)) -> new_lt4(yvy890, yvy900, daf) new_compare16(yvy189, yvy190, False, bec) -> GT new_compare24(yvy96, yvy97, False, bgb, bgc) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgb), bgb, bgc) new_ltEs22(yvy166, yvy168, app(app(ty_Either, egg), egh)) -> new_ltEs5(yvy166, yvy168, egg, egh) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hb), hc), gf) -> new_esEs19(yvy40000, yvy30000, hb, hc) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, eda)) -> new_esEs23(yvy40001, yvy30001, eda) new_lt23(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_lt19(yvy153, yvy156, fdc, fdd) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, egc), egd), ege)) -> new_ltEs12(yvy166, yvy168, egc, egd, ege) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_lt5(yvy153, yvy156, fde, fdf) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_@2, bae), baf)) -> new_esEs19(yvy40000, yvy30000, bae, baf) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbd)) -> new_ltEs9(yvy892, yvy902, cbd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhd), bhe)) -> new_ltEs17(yvy96, yvy97, bhd, bhe) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dce)) -> new_esEs17(yvy4000, yvy3000, dce) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfb)) -> new_ltEs13(yvy89, yvy90, cfb) new_esEs34(yvy890, yvy900, app(ty_[], dab)) -> new_esEs17(yvy890, yvy900, dab) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, feh)) -> new_esEs26(yvy4000, yvy3000, feh) new_compare110(yvy205, yvy206, False, ebf, ebg) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs13(yvy891, yvy901, cch, cda, cdb) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbc) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dab)) -> new_lt6(yvy890, yvy900, dab) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bea, beb) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eea), eeb)) -> new_esEs22(yvy40000, yvy30000, eea, eeb) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fbh)) -> new_ltEs13(yvy154, yvy157, fbh) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], beg) -> False new_esEs17([], :(yvy30000, yvy30001), beg) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_lt5(yvy152, yvy155, bf, bg) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_lt19(yvy152, yvy155, dfc, dfd) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcd)) -> new_esEs26(yvy4001, yvy3001, dcd) new_ltEs21(yvy103, yvy104, app(ty_[], deb)) -> new_ltEs11(yvy103, yvy104, deb) new_ltEs13(Nothing, Just(yvy900), cfb) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhc), dhd)) -> new_esEs19(yvy4002, yvy3002, dhc, dhd) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, fdh), fea), feb)) -> new_esEs13(yvy4000, yvy3000, fdh, fea, feb) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eec)) -> new_esEs23(yvy40000, yvy30000, eec) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs12(EQ, EQ) new_compare13(x0, x1, x2, x3, False, x4, x5) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(EQ, LT) new_compare28(LT, EQ) new_compare16(x0, x1, False, x2) new_compare14(x0, x1, True, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt21(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Float) new_fsEs(x0) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Ordering) new_esEs23(Just(x0), Nothing, x1) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt22(x0, x1, app(ty_[], x2)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare7(Just(x0), Just(x1), x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_lt23(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs39(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_compare28(GT, GT) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_ltEs24(x0, x1, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_esEs17([], [], x0) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Double) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare212(x0, x1, False, x2) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare7(Nothing, Nothing, x0) new_lt23(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1, x2) new_primPlusNat0(Zero, Succ(x0)) new_compare110(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_ltEs11(x0, x1, x2) new_lt21(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs22(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs10(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True, x2) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_lt6(x0, x1, x2) new_esEs33(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Int) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_compare25(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_lt5(x0, x1, x2, x3) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs14(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_compare24(x0, x1, True, x2, x3) new_esEs18(False, True) new_esEs18(True, False) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_compare19(False, False) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs32(x0, x1, app(ty_[], x2)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Zero) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_esEs16(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_ltEs13(Just(x0), Nothing, x1) new_lt12(x0, x1, ty_Int) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Float) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_lt10(x0, x1, x2) new_esEs31(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCompAux00(x0, EQ) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_compare212(x0, x1, True, x2) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_esEs17([], :(x0, x1), x2) new_asAs(False, x0) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs33(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt22(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs37(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Nothing, Nothing, x0) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Zero, Zero) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_lt19(x0, x1, x2, x3) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_pePe(False, x0) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Integer) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_lt16(x0, x1, x2, x3, x4) new_esEs6(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Float) new_ltEs13(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, ty_Char) new_compare211(x0, x1, True, x2, x3) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Int) new_compare7(Nothing, Just(x0), x1) new_ltEs21(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare6(x0, x1) new_lt13(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Int) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Zero) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_esEs36(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, x0) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_esEs23(Nothing, Just(x0), x1) new_ltEs13(Nothing, Nothing, x0) new_lt7(x0, x1) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs18(False, False) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Float) new_esEs23(Just(x0), Just(x1), ty_@0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(ty_[], x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_ltEs19(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Ordering) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_lt21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(x0, x1, ty_Ordering) new_ltEs9(x0, x1, x2) new_esEs35(x0, x1, ty_Double) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt12(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare28(LT, LT) new_esEs25(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(x0, x1) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_compare14(x0, x1, False, x2, x3) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Float) new_compare211(x0, x1, False, x2, x3) new_esEs14(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Bool) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_compare110(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_ltEs22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_compare25(x0, x1, app(ty_[], x2)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs11(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_not(False) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_esEs39(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_compare25(x0, x1, app(ty_Ratio, x2)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs15(x0, x1, ty_Float) new_compare24(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs38(x0, x1, ty_@0) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs15(x0, x1, ty_Char) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_compare7(Just(x0), Nothing, x1) new_esEs4(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt11(x0, x1, ty_Float) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare19(True, False) new_compare19(False, True) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) new_esEs17(:(x0, x1), [], x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (83) 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)) ---------------------------------------- (84) 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_compare25(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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbf), bbg), bbh), bbc) -> new_ltEs12(yvy890, yvy900, bbf, bbg, bbh) new_ltEs20(yvy891, yvy901, app(ty_[], cgh)) -> new_ltEs11(yvy891, yvy901, cgh) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_lt5(yvy891, yvy901, cdf, cdg) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Maybe, bdd)) -> new_ltEs13(yvy890, yvy900, bdd) new_lt20(yvy890, yvy900, app(ty_Ratio, daa)) -> new_lt10(yvy890, yvy900, daa) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cgc), cgd)) -> new_ltEs17(yvy890, yvy900, cgc, cgd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_lt19(yvy891, yvy901, cdd, cde) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fah, fba, fbb) -> new_esEs12(new_compare27(yvy152, yvy155, fah, fba, fbb), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_esEs19(yvy152, yvy155, bf, bg) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bca), bbc) -> new_ltEs13(yvy890, yvy900, bca) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cfh)) -> new_ltEs13(yvy890, yvy900, cfh) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eee)) -> new_esEs17(yvy40000, yvy30000, eee) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bea, beb) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebc, ebd) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebc), new_esEs35(yvy40001, yvy30001, ebd)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], ge), gf) -> new_esEs17(yvy40000, yvy30000, ge) new_compare25(yvy400, yvy300, app(ty_Ratio, bhf)) -> new_compare26(yvy400, yvy300, bhf) new_lt19(yvy152, yvy155, dfc, dfd) -> new_esEs12(new_compare30(yvy152, yvy155, dfc, dfd), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bed)) -> new_lt6(yvy152, yvy155, bed) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hf), gf) -> new_esEs23(yvy40000, yvy30000, hf) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fcf)) -> new_esEs17(yvy153, yvy156, fcf) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_lt16(yvy165, yvy167, ehe, ehf, ehg) new_esEs39(yvy152, yvy155, app(ty_Ratio, cah)) -> new_esEs26(yvy152, yvy155, cah) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_lt16(yvy891, yvy901, cch, cda, cdb) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_esEs23(yvy153, yvy156, fdb) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs13(yvy4001, yvy3001, dbd, dbe, dbf) new_lt21(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_lt19(yvy165, yvy167, faa, fab) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], beg)) -> new_esEs17(yvy4000, yvy3000, beg) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bcf, bbc) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gf) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbe)) -> new_ltEs11(yvy892, yvy902, cbe) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gf) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cea)) -> new_esEs17(yvy890, yvy900, cea) new_lt21(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_lt5(yvy165, yvy167, fac, fad) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, bc, bd, be) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_lt4(yvy153, yvy156, fdb) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_esEs22(yvy165, yvy167, faa, fab) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fca), fcb)) -> new_ltEs5(yvy154, yvy157, fca, fcb) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs13(yvy40000, yvy30000, bfa, bfb, bfc) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs13(yvy4002, yvy3002, dgh, dha, dhb) new_esEs23(Nothing, Just(yvy30000), ebe) -> False new_esEs23(Just(yvy40000), Nothing, ebe) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gf) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cgg)) -> new_ltEs9(yvy891, yvy901, cgg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_[], baa)) -> new_esEs17(yvy40000, yvy30000, baa) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cge, cgf) -> new_pePe(new_lt20(yvy890, yvy900, cge), new_asAs(new_esEs34(yvy890, yvy900, cge), new_ltEs20(yvy891, yvy901, cgf))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, de)) -> new_esEs26(yvy40002, yvy30002, de) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_esEs22(yvy153, yvy156, fdc, fdd) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bec) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], ccg)) -> new_lt6(yvy891, yvy901, ccg) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbc) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fec), fed)) -> new_esEs19(yvy4000, yvy3000, fec, fed) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebe) -> True new_lt12(yvy890, yvy900, app(ty_[], cea)) -> new_lt6(yvy890, yvy900, cea) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, daf)) -> new_esEs23(yvy890, yvy900, daf) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfe)) -> new_esEs17(yvy4000, yvy3000, dfe) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bga)) -> new_esEs26(yvy40000, yvy30000, bga) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], bef)) -> new_ltEs11(yvy89, yvy90, bef) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bge)) -> new_ltEs11(yvy96, yvy97, bge) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, fg), fh)) -> new_esEs22(yvy40000, yvy30000, fg, fh) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbc) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fae, faf, fag) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fae), new_asAs(new_esEs39(yvy152, yvy155, fae), new_pePe(new_lt23(yvy153, yvy156, faf), new_asAs(new_esEs38(yvy153, yvy156, faf), new_ltEs23(yvy154, yvy157, fag)))), fae, faf, fag) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcb), bcc), bbc) -> new_ltEs5(yvy890, yvy900, bcb, bcc) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, cee)) -> new_esEs23(yvy890, yvy900, cee) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cac)) -> new_compare7(yvy400, yvy300, cac) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edb)) -> new_esEs26(yvy40001, yvy30001, edb) new_lt22(yvy152, yvy155, app(ty_Maybe, bb)) -> new_lt4(yvy152, yvy155, bb) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, bef) -> new_fsEs(new_compare0(yvy89, yvy90, bef)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) new_compare30(Right(yvy4000), Right(yvy3000), cad, cae) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cae), cad, cae) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_lt16(yvy152, yvy155, fah, fba, fbb) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, cha), chb), chc)) -> new_ltEs12(yvy891, yvy901, cha, chb, chc) new_compare110(yvy205, yvy206, True, ebf, ebg) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehd)) -> new_esEs17(yvy165, yvy167, ehd) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, cg), da)) -> new_esEs19(yvy40002, yvy30002, cg, da) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), bee) -> new_asAs(new_esEs30(yvy40000, yvy30000, bee), new_esEs29(yvy40001, yvy30001, bee)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efe)) -> new_esEs23(yvy40000, yvy30000, efe) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dga), dgb)) -> new_esEs19(yvy4000, yvy3000, dga, dgb) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bfd), bfe)) -> new_esEs19(yvy40000, yvy30000, bfd, bfe) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Maybe, bba)) -> new_esEs23(yvy40000, yvy30000, bba) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efc), efd)) -> new_esEs22(yvy40000, yvy30000, efc, efd) new_esEs33(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_esEs22(yvy890, yvy900, cef, ceg) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_esEs13(yvy40001, yvy30001, ecb, ecc, ecd) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs12(yvy892, yvy902, cbf, cbg, cbh) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fcf)) -> new_lt6(yvy153, yvy156, fcf) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cba, cbb, cbc) -> new_pePe(new_lt12(yvy890, yvy900, cba), new_asAs(new_esEs33(yvy890, yvy900, cba), new_pePe(new_lt11(yvy891, yvy901, cbb), new_asAs(new_esEs32(yvy891, yvy901, cbb), new_ltEs19(yvy892, yvy902, cbc))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bh, ca, cb) -> new_asAs(new_esEs16(yvy40000, yvy30000, bh), new_asAs(new_esEs15(yvy40001, yvy30001, ca), new_esEs14(yvy40002, yvy30002, cb))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, gc, gd) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chd)) -> new_ltEs13(yvy891, yvy901, chd) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], eh)) -> new_esEs17(yvy40000, yvy30000, eh) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dgc), dgd)) -> new_esEs22(yvy4000, yvy3000, dgc, dgd) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cfd)) -> new_ltEs11(yvy890, yvy900, cfd) new_esEs39(yvy152, yvy155, app(ty_[], bed)) -> new_esEs17(yvy152, yvy155, bed) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, ga)) -> new_esEs23(yvy40000, yvy30000, ga) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_[], bch)) -> new_ltEs11(yvy890, yvy900, bch) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Ratio, bcg)) -> new_ltEs9(yvy890, yvy900, bcg) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_lt16(yvy890, yvy900, ceb, cec, ced) new_esEs39(yvy152, yvy155, app(ty_Maybe, bb)) -> new_esEs23(yvy152, yvy155, bb) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eed)) -> new_esEs26(yvy40000, yvy30000, eed) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], beg) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs12(yvy890, yvy900, cfe, cff, cfg) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_esEs22(yvy891, yvy901, cdd, cde) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eag), eah)) -> new_esEs22(yvy4001, yvy3001, eag, eah) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hd), he), gf) -> new_esEs22(yvy40000, yvy30000, hd, he) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs12(yvy96, yvy97, bgf, bgg, bgh) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cga), cgb)) -> new_ltEs5(yvy890, yvy900, cga, cgb) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), caf, cag) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, caf), new_esEs10(yvy4001, yvy3001, cag)), caf, cag) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbc)) -> new_ltEs9(yvy154, yvy157, fbc) new_lt23(yvy153, yvy156, app(ty_Ratio, fce)) -> new_lt10(yvy153, yvy156, fce) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbc) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs13(yvy40000, yvy30000, edd, ede, edf) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, dhh)) -> new_esEs26(yvy4002, yvy3002, dhh) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_esEs23(yvy891, yvy901, cdc) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fgc) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, eha), ehb)) -> new_ltEs17(yvy166, yvy168, eha, ehb) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eba)) -> new_esEs23(yvy4001, yvy3001, eba) new_compare25(yvy400, yvy300, app(app(app(ty_@3, bhh), caa), cab)) -> new_compare27(yvy400, yvy300, bhh, caa, cab) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs13(yvy40000, yvy30000, fa, fb, fc) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_esEs13(yvy152, yvy155, fah, fba, fbb) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dda), ddb)) -> new_esEs19(yvy4000, yvy3000, dda, ddb) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs13(yvy40000, yvy30000, eef, eeg, eeh) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bha)) -> new_ltEs13(yvy96, yvy97, bha) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ece), ecf)) -> new_esEs19(yvy40001, yvy30001, ece, ecf) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fcc), fcd)) -> new_ltEs17(yvy154, yvy157, fcc, fcd) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs13(yvy153, yvy156, fcg, fch, fda) new_lt5(yvy152, yvy155, bf, bg) -> new_esEs12(new_compare8(yvy152, yvy155, bf, bg), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs13(yvy40001, yvy30001, dg, dh, ea) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, cee)) -> new_lt4(yvy890, yvy900, cee) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dbg), dbh)) -> new_esEs19(yvy4001, yvy3001, dbg, dbh) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs13(yvy40002, yvy30002, cd, ce, cf) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dge)) -> new_esEs23(yvy4000, yvy3000, dge) new_esEs33(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_esEs19(yvy890, yvy900, ceh, cfa) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffe), fff)) -> new_esEs19(yvy4000, yvy3000, ffe, fff) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy89, yvy90, cge, cgf) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs13(yvy165, yvy167, ehe, ehf, ehg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Ratio, bbb)) -> new_esEs26(yvy40000, yvy30000, bbb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gf) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gb)) -> new_esEs26(yvy40000, yvy30000, gb) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), beg) -> new_asAs(new_esEs31(yvy40000, yvy30000, beg), new_esEs17(yvy40001, yvy30001, beg)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, efg, efh) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gf) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebe)) -> new_esEs23(yvy4000, yvy3000, ebe) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ebh) -> new_fsEs(new_compare26(yvy89, yvy90, ebh)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, ddg, ddh) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, ddh), ddg, ddh) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, eg)) -> new_esEs26(yvy40001, yvy30001, eg) new_compare25(yvy400, yvy300, app(app(ty_@2, caf), cag)) -> new_compare8(yvy400, yvy300, caf, cag) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fce)) -> new_esEs26(yvy153, yvy156, fce) new_esEs5(yvy4001, yvy3001, app(ty_[], eaa)) -> new_esEs17(yvy4001, yvy3001, eaa) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, eff)) -> new_esEs26(yvy40000, yvy30000, eff) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ebh)) -> new_ltEs9(yvy89, yvy90, ebh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, hh), gf)) -> new_esEs22(yvy4000, yvy3000, hh, gf) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_esEs19(yvy890, yvy900, dba, dbb) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, cad), cae)) -> new_compare30(yvy400, yvy300, cad, cae) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs13(yvy40000, yvy30000, bab, bac, bad) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccb), ccc)) -> new_ltEs5(yvy892, yvy902, ccb, ccc) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gf) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_esEs26(yvy165, yvy167, ehc) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bfh)) -> new_esEs23(yvy40000, yvy30000, bfh) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_Either, bag), bah)) -> new_esEs22(yvy40000, yvy30000, bag, bah) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dgg)) -> new_esEs17(yvy4002, yvy3002, dgg) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, dhg)) -> new_esEs23(yvy4002, yvy3002, dhg) new_compare210(yvy165, yvy166, yvy167, yvy168, False, efg, efh) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, efg), new_asAs(new_esEs37(yvy165, yvy167, efg), new_ltEs22(yvy166, yvy168, efh)), efg, efh) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], beh)) -> new_esEs17(yvy40000, yvy30000, beh) new_ltEs21(yvy103, yvy104, app(ty_Maybe, def)) -> new_ltEs13(yvy103, yvy104, def) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fd), ff)) -> new_esEs19(yvy40000, yvy30000, fd, ff) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], df)) -> new_esEs17(yvy40001, yvy30001, df) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs13(yvy890, yvy900, ceb, cec, ced) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbc) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, ega)) -> new_ltEs9(yvy166, yvy168, ega) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cah) -> new_esEs12(new_compare26(yvy152, yvy155, cah), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), cad, cae) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, fee), fef)) -> new_esEs22(yvy4000, yvy3000, fee, fef) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs13(yvy4000, yvy3000, bh, ca, cb) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, ecg), ech)) -> new_esEs22(yvy40001, yvy30001, ecg, ech) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, ef)) -> new_esEs23(yvy40001, yvy30001, ef) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bff), bfg)) -> new_esEs22(yvy40000, yvy30000, bff, bfg) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egb)) -> new_ltEs11(yvy166, yvy168, egb) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_esEs19(yvy891, yvy901, cdf, cdg) new_compare0([], :(yvy3000, yvy3001), bhg) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhe), dhf)) -> new_esEs22(yvy4002, yvy3002, dhe, dhf) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bcf, bbc) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eae), eaf)) -> new_esEs19(yvy4001, yvy3001, eae, eaf) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], bhg)) -> new_compare0(yvy400, yvy300, bhg) new_esEs10(yvy4001, yvy3001, app(ty_[], dbc)) -> new_esEs17(yvy4001, yvy3001, dbc) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gf) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_lt10(yvy890, yvy900, cdh) new_ltEs20(yvy891, yvy901, app(app(ty_Either, che), chf)) -> new_ltEs5(yvy891, yvy901, che, chf) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgb, bgc) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, db), dc)) -> new_esEs22(yvy40002, yvy30002, db, dc) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbc) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_lt16(yvy153, yvy156, fcg, fch, fda) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffa)) -> new_esEs17(yvy4000, yvy3000, ffa) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_Either, bde), bdf)) -> new_ltEs5(yvy890, yvy900, bde, bdf) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], bhg) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], edc)) -> new_esEs17(yvy40000, yvy30000, edc) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), cad, cae) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fdg)) -> new_esEs17(yvy4000, yvy3000, fdg) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcd), bce), bbc) -> new_ltEs17(yvy890, yvy900, bcd, bce) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, bee)) -> new_esEs26(yvy4000, yvy3000, bee) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfb) -> True new_ltEs13(Just(yvy890), Nothing, cfb) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, feg)) -> new_esEs23(yvy4000, yvy3000, feg) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ed), ee)) -> new_esEs22(yvy40001, yvy30001, ed, ee) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, edg), edh)) -> new_esEs19(yvy40000, yvy30000, edg, edh) new_ltEs19(yvy892, yvy902, app(ty_Maybe, cca)) -> new_ltEs13(yvy892, yvy902, cca) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_@2, bdg), bdh)) -> new_ltEs17(yvy890, yvy900, bdg, bdh) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_lt4(yvy165, yvy167, ehh) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fgc) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fgc), fgc) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebc), ebd)) -> new_esEs19(yvy4000, yvy3000, ebc, ebd) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebb)) -> new_esEs26(yvy4001, yvy3001, ebb) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_lt4(yvy891, yvy901, cdc) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dde)) -> new_esEs23(yvy4000, yvy3000, dde) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_esEs22(yvy152, yvy155, dfc, dfd) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_esEs19(yvy165, yvy167, fac, fad) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ffg), ffh)) -> new_esEs22(yvy4000, yvy3000, ffg, ffh) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], cc)) -> new_esEs17(yvy40002, yvy30002, cc) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_lt10(yvy891, yvy901, ccf) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bcf), bbc)) -> new_ltEs5(yvy89, yvy90, bcf, bbc) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfa), dfb)) -> new_ltEs17(yvy103, yvy104, dfa, dfb) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, eab), eac), ead)) -> new_esEs13(yvy4001, yvy3001, eab, eac, ead) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dcc)) -> new_esEs23(yvy4001, yvy3001, dcc) new_lt22(yvy152, yvy155, app(ty_Ratio, cah)) -> new_lt10(yvy152, yvy155, cah) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbd)) -> new_ltEs11(yvy154, yvy157, fbd) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cac) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhb), bhc)) -> new_ltEs5(yvy96, yvy97, bhb, bhc) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bhh, caa, cab) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bhh), new_asAs(new_esEs5(yvy4001, yvy3001, caa), new_esEs4(yvy4002, yvy3002, cab))), bhh, caa, cab) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], ccg)) -> new_esEs17(yvy891, yvy901, ccg) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fga)) -> new_esEs23(yvy4000, yvy3000, fga) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, ddg, ddh) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dca), dcb)) -> new_esEs22(yvy4001, yvy3001, dca, dcb) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs12(yvy890, yvy900, bda, bdb, bdc) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbe), bbc) -> new_ltEs11(yvy890, yvy900, bbe) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bb) -> new_esEs12(new_compare7(yvy152, yvy155, bb), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs13(yvy890, yvy900, dac, dad, dae) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs13(yvy4000, yvy3000, dff, dfg, dfh) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gf) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efa), efb)) -> new_esEs19(yvy40000, yvy30000, efa, efb) new_compare7(Nothing, Nothing, cac) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dea)) -> new_ltEs9(yvy103, yvy104, dea) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, bc, bd, be) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_esEs22(yvy890, yvy900, dag, dah) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) -> LT new_lt6(yvy152, yvy155, bed) -> new_esEs12(new_compare0(yvy152, yvy155, bed), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs13(yvy4000, yvy3000, dcf, dcg, dch) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, ddc), ddd)) -> new_esEs22(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_lt16(yvy890, yvy900, dac, dad, dae) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbc) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs26(yvy4000, yvy3000, fgb) new_ltEs20(yvy891, yvy901, app(app(ty_@2, chg), chh)) -> new_ltEs17(yvy891, yvy901, chg, chh) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), hh, gf) -> False new_esEs22(Right(yvy40000), Left(yvy30000), hh, gf) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbd), bbc) -> new_ltEs9(yvy890, yvy900, bbd) new_compare0(:(yvy4000, yvy4001), [], bhg) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_lt5(yvy890, yvy900, dba, dbb) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbc) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_lt19(yvy890, yvy900, dag, dah) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, dd)) -> new_esEs23(yvy40002, yvy30002, dd) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccd), cce)) -> new_ltEs17(yvy892, yvy902, ccd, cce) new_compare30(Left(yvy4000), Left(yvy3000), cad, cae) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, cad), cad, cae) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehd)) -> new_lt6(yvy165, yvy167, ehd) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_esEs23(yvy165, yvy167, ehh) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs13(yvy4000, yvy3000, ffb, ffc, ffd) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddf)) -> new_esEs26(yvy4000, yvy3000, ddf) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, hg), gf) -> new_esEs26(yvy40000, yvy30000, hg) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfc)) -> new_ltEs9(yvy890, yvy900, cfc) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_esEs19(yvy153, yvy156, fde, fdf) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs12(yvy89, yvy90, cba, cbb, cbc) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bhg) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bhg), bhg) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgf)) -> new_esEs26(yvy4000, yvy3000, dgf) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, daa)) -> new_esEs26(yvy890, yvy900, daa) new_lt21(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_lt10(yvy165, yvy167, ehc) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_lt5(yvy890, yvy900, ceh, cfa) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dec), ded), dee)) -> new_ltEs12(yvy103, yvy104, dec, ded, dee) new_lt12(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_lt19(yvy890, yvy900, cef, ceg) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egf)) -> new_ltEs13(yvy166, yvy168, egf) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cac) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cac), cac) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, eb), ec)) -> new_esEs19(yvy40001, yvy30001, eb, ec) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], eca)) -> new_esEs17(yvy40001, yvy30001, eca) new_compare7(Nothing, Just(yvy3000), cac) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, gg), gh), ha), gf) -> new_esEs13(yvy40000, yvy30000, gg, gh, ha) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgd)) -> new_ltEs9(yvy96, yvy97, bgd) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fae, faf, fag) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_ltEs12(yvy154, yvy157, fbe, fbf, fbg) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_esEs26(yvy891, yvy901, ccf) new_ltEs21(yvy103, yvy104, app(app(ty_Either, deg), deh)) -> new_ltEs5(yvy103, yvy104, deg, deh) new_esEs33(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_esEs26(yvy890, yvy900, cdh) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, gc, gd) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, daf)) -> new_lt4(yvy890, yvy900, daf) new_compare16(yvy189, yvy190, False, bec) -> GT new_compare24(yvy96, yvy97, False, bgb, bgc) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgb), bgb, bgc) new_ltEs22(yvy166, yvy168, app(app(ty_Either, egg), egh)) -> new_ltEs5(yvy166, yvy168, egg, egh) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hb), hc), gf) -> new_esEs19(yvy40000, yvy30000, hb, hc) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, eda)) -> new_esEs23(yvy40001, yvy30001, eda) new_lt23(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_lt19(yvy153, yvy156, fdc, fdd) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, egc), egd), ege)) -> new_ltEs12(yvy166, yvy168, egc, egd, ege) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_lt5(yvy153, yvy156, fde, fdf) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_@2, bae), baf)) -> new_esEs19(yvy40000, yvy30000, bae, baf) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbd)) -> new_ltEs9(yvy892, yvy902, cbd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhd), bhe)) -> new_ltEs17(yvy96, yvy97, bhd, bhe) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dce)) -> new_esEs17(yvy4000, yvy3000, dce) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfb)) -> new_ltEs13(yvy89, yvy90, cfb) new_esEs34(yvy890, yvy900, app(ty_[], dab)) -> new_esEs17(yvy890, yvy900, dab) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, feh)) -> new_esEs26(yvy4000, yvy3000, feh) new_compare110(yvy205, yvy206, False, ebf, ebg) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs13(yvy891, yvy901, cch, cda, cdb) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbc) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dab)) -> new_lt6(yvy890, yvy900, dab) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bea, beb) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eea), eeb)) -> new_esEs22(yvy40000, yvy30000, eea, eeb) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fbh)) -> new_ltEs13(yvy154, yvy157, fbh) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], beg) -> False new_esEs17([], :(yvy30000, yvy30001), beg) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_lt5(yvy152, yvy155, bf, bg) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_lt19(yvy152, yvy155, dfc, dfd) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcd)) -> new_esEs26(yvy4001, yvy3001, dcd) new_ltEs21(yvy103, yvy104, app(ty_[], deb)) -> new_ltEs11(yvy103, yvy104, deb) new_ltEs13(Nothing, Just(yvy900), cfb) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhc), dhd)) -> new_esEs19(yvy4002, yvy3002, dhc, dhd) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, fdh), fea), feb)) -> new_esEs13(yvy4000, yvy3000, fdh, fea, feb) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eec)) -> new_esEs23(yvy40000, yvy30000, eec) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs12(EQ, EQ) new_compare13(x0, x1, x2, x3, False, x4, x5) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(EQ, LT) new_compare28(LT, EQ) new_compare16(x0, x1, False, x2) new_compare14(x0, x1, True, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt21(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Float) new_fsEs(x0) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Ordering) new_esEs23(Just(x0), Nothing, x1) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt22(x0, x1, app(ty_[], x2)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare7(Just(x0), Just(x1), x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_lt23(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs39(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_compare28(GT, GT) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_ltEs24(x0, x1, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_esEs17([], [], x0) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Double) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare212(x0, x1, False, x2) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare7(Nothing, Nothing, x0) new_lt23(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1, x2) new_primPlusNat0(Zero, Succ(x0)) new_compare110(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_ltEs11(x0, x1, x2) new_lt21(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs22(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs10(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True, x2) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_lt6(x0, x1, x2) new_esEs33(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Int) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_compare25(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_lt5(x0, x1, x2, x3) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs14(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_compare24(x0, x1, True, x2, x3) new_esEs18(False, True) new_esEs18(True, False) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_compare19(False, False) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs32(x0, x1, app(ty_[], x2)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Zero) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_esEs16(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_ltEs13(Just(x0), Nothing, x1) new_lt12(x0, x1, ty_Int) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Float) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_lt10(x0, x1, x2) new_esEs31(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCompAux00(x0, EQ) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_compare212(x0, x1, True, x2) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_esEs17([], :(x0, x1), x2) new_asAs(False, x0) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs33(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt22(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs37(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Nothing, Nothing, x0) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Zero, Zero) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_lt19(x0, x1, x2, x3) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_pePe(False, x0) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Integer) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_lt16(x0, x1, x2, x3, x4) new_esEs6(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Float) new_ltEs13(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, ty_Char) new_compare211(x0, x1, True, x2, x3) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Int) new_compare7(Nothing, Just(x0), x1) new_ltEs21(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare6(x0, x1) new_lt13(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Int) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Zero) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_esEs36(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, x0) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_esEs23(Nothing, Just(x0), x1) new_ltEs13(Nothing, Nothing, x0) new_lt7(x0, x1) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs18(False, False) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Float) new_esEs23(Just(x0), Just(x1), ty_@0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(ty_[], x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_ltEs19(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Ordering) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_lt21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(x0, x1, ty_Ordering) new_ltEs9(x0, x1, x2) new_esEs35(x0, x1, ty_Double) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt12(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare28(LT, LT) new_esEs25(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(x0, x1) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_compare14(x0, x1, False, x2, x3) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Float) new_compare211(x0, x1, False, x2, x3) new_esEs14(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Bool) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_compare110(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_ltEs22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_compare25(x0, x1, app(ty_[], x2)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs11(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_not(False) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_esEs39(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_compare25(x0, x1, app(ty_Ratio, x2)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs15(x0, x1, ty_Float) new_compare24(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs38(x0, x1, ty_@0) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs15(x0, x1, ty_Char) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_compare7(Just(x0), Nothing, x1) new_esEs4(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt11(x0, x1, ty_Float) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare19(True, False) new_compare19(False, True) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) new_esEs17(:(x0, x1), [], x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (85) 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)) ---------------------------------------- (86) 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_compare25(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_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbf), bbg), bbh), bbc) -> new_ltEs12(yvy890, yvy900, bbf, bbg, bbh) new_ltEs20(yvy891, yvy901, app(ty_[], cgh)) -> new_ltEs11(yvy891, yvy901, cgh) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_lt5(yvy891, yvy901, cdf, cdg) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Maybe, bdd)) -> new_ltEs13(yvy890, yvy900, bdd) new_lt20(yvy890, yvy900, app(ty_Ratio, daa)) -> new_lt10(yvy890, yvy900, daa) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cgc), cgd)) -> new_ltEs17(yvy890, yvy900, cgc, cgd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_lt19(yvy891, yvy901, cdd, cde) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fah, fba, fbb) -> new_esEs12(new_compare27(yvy152, yvy155, fah, fba, fbb), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_esEs19(yvy152, yvy155, bf, bg) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bca), bbc) -> new_ltEs13(yvy890, yvy900, bca) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cfh)) -> new_ltEs13(yvy890, yvy900, cfh) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eee)) -> new_esEs17(yvy40000, yvy30000, eee) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bea, beb) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebc, ebd) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebc), new_esEs35(yvy40001, yvy30001, ebd)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], ge), gf) -> new_esEs17(yvy40000, yvy30000, ge) new_compare25(yvy400, yvy300, app(ty_Ratio, bhf)) -> new_compare26(yvy400, yvy300, bhf) new_lt19(yvy152, yvy155, dfc, dfd) -> new_esEs12(new_compare30(yvy152, yvy155, dfc, dfd), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bed)) -> new_lt6(yvy152, yvy155, bed) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hf), gf) -> new_esEs23(yvy40000, yvy30000, hf) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fcf)) -> new_esEs17(yvy153, yvy156, fcf) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_lt16(yvy165, yvy167, ehe, ehf, ehg) new_esEs39(yvy152, yvy155, app(ty_Ratio, cah)) -> new_esEs26(yvy152, yvy155, cah) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_lt16(yvy891, yvy901, cch, cda, cdb) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_esEs23(yvy153, yvy156, fdb) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs13(yvy4001, yvy3001, dbd, dbe, dbf) new_lt21(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_lt19(yvy165, yvy167, faa, fab) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], beg)) -> new_esEs17(yvy4000, yvy3000, beg) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bcf, bbc) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gf) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbe)) -> new_ltEs11(yvy892, yvy902, cbe) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gf) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cea)) -> new_esEs17(yvy890, yvy900, cea) new_lt21(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_lt5(yvy165, yvy167, fac, fad) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, bc, bd, be) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_lt4(yvy153, yvy156, fdb) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_esEs22(yvy165, yvy167, faa, fab) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fca), fcb)) -> new_ltEs5(yvy154, yvy157, fca, fcb) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs13(yvy40000, yvy30000, bfa, bfb, bfc) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs13(yvy4002, yvy3002, dgh, dha, dhb) new_esEs23(Nothing, Just(yvy30000), ebe) -> False new_esEs23(Just(yvy40000), Nothing, ebe) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gf) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cgg)) -> new_ltEs9(yvy891, yvy901, cgg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_[], baa)) -> new_esEs17(yvy40000, yvy30000, baa) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cge, cgf) -> new_pePe(new_lt20(yvy890, yvy900, cge), new_asAs(new_esEs34(yvy890, yvy900, cge), new_ltEs20(yvy891, yvy901, cgf))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, de)) -> new_esEs26(yvy40002, yvy30002, de) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_esEs22(yvy153, yvy156, fdc, fdd) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bec) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], ccg)) -> new_lt6(yvy891, yvy901, ccg) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbc) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fec), fed)) -> new_esEs19(yvy4000, yvy3000, fec, fed) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebe) -> True new_lt12(yvy890, yvy900, app(ty_[], cea)) -> new_lt6(yvy890, yvy900, cea) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, daf)) -> new_esEs23(yvy890, yvy900, daf) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfe)) -> new_esEs17(yvy4000, yvy3000, dfe) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bga)) -> new_esEs26(yvy40000, yvy30000, bga) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], bef)) -> new_ltEs11(yvy89, yvy90, bef) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bge)) -> new_ltEs11(yvy96, yvy97, bge) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, fg), fh)) -> new_esEs22(yvy40000, yvy30000, fg, fh) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbc) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fae, faf, fag) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fae), new_asAs(new_esEs39(yvy152, yvy155, fae), new_pePe(new_lt23(yvy153, yvy156, faf), new_asAs(new_esEs38(yvy153, yvy156, faf), new_ltEs23(yvy154, yvy157, fag)))), fae, faf, fag) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcb), bcc), bbc) -> new_ltEs5(yvy890, yvy900, bcb, bcc) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, cee)) -> new_esEs23(yvy890, yvy900, cee) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cac)) -> new_compare7(yvy400, yvy300, cac) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edb)) -> new_esEs26(yvy40001, yvy30001, edb) new_lt22(yvy152, yvy155, app(ty_Maybe, bb)) -> new_lt4(yvy152, yvy155, bb) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, bef) -> new_fsEs(new_compare0(yvy89, yvy90, bef)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) new_compare30(Right(yvy4000), Right(yvy3000), cad, cae) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cae), cad, cae) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_lt16(yvy152, yvy155, fah, fba, fbb) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, cha), chb), chc)) -> new_ltEs12(yvy891, yvy901, cha, chb, chc) new_compare110(yvy205, yvy206, True, ebf, ebg) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehd)) -> new_esEs17(yvy165, yvy167, ehd) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, cg), da)) -> new_esEs19(yvy40002, yvy30002, cg, da) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), bee) -> new_asAs(new_esEs30(yvy40000, yvy30000, bee), new_esEs29(yvy40001, yvy30001, bee)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efe)) -> new_esEs23(yvy40000, yvy30000, efe) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dga), dgb)) -> new_esEs19(yvy4000, yvy3000, dga, dgb) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bfd), bfe)) -> new_esEs19(yvy40000, yvy30000, bfd, bfe) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Maybe, bba)) -> new_esEs23(yvy40000, yvy30000, bba) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efc), efd)) -> new_esEs22(yvy40000, yvy30000, efc, efd) new_esEs33(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_esEs22(yvy890, yvy900, cef, ceg) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_esEs13(yvy40001, yvy30001, ecb, ecc, ecd) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs12(yvy892, yvy902, cbf, cbg, cbh) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fcf)) -> new_lt6(yvy153, yvy156, fcf) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cba, cbb, cbc) -> new_pePe(new_lt12(yvy890, yvy900, cba), new_asAs(new_esEs33(yvy890, yvy900, cba), new_pePe(new_lt11(yvy891, yvy901, cbb), new_asAs(new_esEs32(yvy891, yvy901, cbb), new_ltEs19(yvy892, yvy902, cbc))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bh, ca, cb) -> new_asAs(new_esEs16(yvy40000, yvy30000, bh), new_asAs(new_esEs15(yvy40001, yvy30001, ca), new_esEs14(yvy40002, yvy30002, cb))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, gc, gd) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chd)) -> new_ltEs13(yvy891, yvy901, chd) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], eh)) -> new_esEs17(yvy40000, yvy30000, eh) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dgc), dgd)) -> new_esEs22(yvy4000, yvy3000, dgc, dgd) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cfd)) -> new_ltEs11(yvy890, yvy900, cfd) new_esEs39(yvy152, yvy155, app(ty_[], bed)) -> new_esEs17(yvy152, yvy155, bed) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, ga)) -> new_esEs23(yvy40000, yvy30000, ga) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_[], bch)) -> new_ltEs11(yvy890, yvy900, bch) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Ratio, bcg)) -> new_ltEs9(yvy890, yvy900, bcg) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_lt16(yvy890, yvy900, ceb, cec, ced) new_esEs39(yvy152, yvy155, app(ty_Maybe, bb)) -> new_esEs23(yvy152, yvy155, bb) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eed)) -> new_esEs26(yvy40000, yvy30000, eed) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], beg) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs12(yvy890, yvy900, cfe, cff, cfg) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_esEs22(yvy891, yvy901, cdd, cde) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eag), eah)) -> new_esEs22(yvy4001, yvy3001, eag, eah) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hd), he), gf) -> new_esEs22(yvy40000, yvy30000, hd, he) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs12(yvy96, yvy97, bgf, bgg, bgh) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cga), cgb)) -> new_ltEs5(yvy890, yvy900, cga, cgb) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), caf, cag) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, caf), new_esEs10(yvy4001, yvy3001, cag)), caf, cag) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbc)) -> new_ltEs9(yvy154, yvy157, fbc) new_lt23(yvy153, yvy156, app(ty_Ratio, fce)) -> new_lt10(yvy153, yvy156, fce) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbc) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs13(yvy40000, yvy30000, edd, ede, edf) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, dhh)) -> new_esEs26(yvy4002, yvy3002, dhh) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_esEs23(yvy891, yvy901, cdc) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fgc) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, eha), ehb)) -> new_ltEs17(yvy166, yvy168, eha, ehb) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eba)) -> new_esEs23(yvy4001, yvy3001, eba) new_compare25(yvy400, yvy300, app(app(app(ty_@3, bhh), caa), cab)) -> new_compare27(yvy400, yvy300, bhh, caa, cab) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs13(yvy40000, yvy30000, fa, fb, fc) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_esEs13(yvy152, yvy155, fah, fba, fbb) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dda), ddb)) -> new_esEs19(yvy4000, yvy3000, dda, ddb) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs13(yvy40000, yvy30000, eef, eeg, eeh) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bha)) -> new_ltEs13(yvy96, yvy97, bha) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ece), ecf)) -> new_esEs19(yvy40001, yvy30001, ece, ecf) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fcc), fcd)) -> new_ltEs17(yvy154, yvy157, fcc, fcd) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs13(yvy153, yvy156, fcg, fch, fda) new_lt5(yvy152, yvy155, bf, bg) -> new_esEs12(new_compare8(yvy152, yvy155, bf, bg), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs13(yvy40001, yvy30001, dg, dh, ea) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, cee)) -> new_lt4(yvy890, yvy900, cee) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dbg), dbh)) -> new_esEs19(yvy4001, yvy3001, dbg, dbh) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs13(yvy40002, yvy30002, cd, ce, cf) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dge)) -> new_esEs23(yvy4000, yvy3000, dge) new_esEs33(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_esEs19(yvy890, yvy900, ceh, cfa) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffe), fff)) -> new_esEs19(yvy4000, yvy3000, ffe, fff) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy89, yvy90, cge, cgf) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs13(yvy165, yvy167, ehe, ehf, ehg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Ratio, bbb)) -> new_esEs26(yvy40000, yvy30000, bbb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gf) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gb)) -> new_esEs26(yvy40000, yvy30000, gb) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), beg) -> new_asAs(new_esEs31(yvy40000, yvy30000, beg), new_esEs17(yvy40001, yvy30001, beg)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, efg, efh) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gf) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebe)) -> new_esEs23(yvy4000, yvy3000, ebe) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ebh) -> new_fsEs(new_compare26(yvy89, yvy90, ebh)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, ddg, ddh) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, ddh), ddg, ddh) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, eg)) -> new_esEs26(yvy40001, yvy30001, eg) new_compare25(yvy400, yvy300, app(app(ty_@2, caf), cag)) -> new_compare8(yvy400, yvy300, caf, cag) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fce)) -> new_esEs26(yvy153, yvy156, fce) new_esEs5(yvy4001, yvy3001, app(ty_[], eaa)) -> new_esEs17(yvy4001, yvy3001, eaa) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, eff)) -> new_esEs26(yvy40000, yvy30000, eff) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ebh)) -> new_ltEs9(yvy89, yvy90, ebh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, hh), gf)) -> new_esEs22(yvy4000, yvy3000, hh, gf) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_esEs19(yvy890, yvy900, dba, dbb) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, cad), cae)) -> new_compare30(yvy400, yvy300, cad, cae) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs13(yvy40000, yvy30000, bab, bac, bad) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccb), ccc)) -> new_ltEs5(yvy892, yvy902, ccb, ccc) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gf) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_esEs26(yvy165, yvy167, ehc) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bfh)) -> new_esEs23(yvy40000, yvy30000, bfh) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_Either, bag), bah)) -> new_esEs22(yvy40000, yvy30000, bag, bah) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dgg)) -> new_esEs17(yvy4002, yvy3002, dgg) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, dhg)) -> new_esEs23(yvy4002, yvy3002, dhg) new_compare210(yvy165, yvy166, yvy167, yvy168, False, efg, efh) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, efg), new_asAs(new_esEs37(yvy165, yvy167, efg), new_ltEs22(yvy166, yvy168, efh)), efg, efh) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], beh)) -> new_esEs17(yvy40000, yvy30000, beh) new_ltEs21(yvy103, yvy104, app(ty_Maybe, def)) -> new_ltEs13(yvy103, yvy104, def) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fd), ff)) -> new_esEs19(yvy40000, yvy30000, fd, ff) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], df)) -> new_esEs17(yvy40001, yvy30001, df) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs13(yvy890, yvy900, ceb, cec, ced) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbc) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, ega)) -> new_ltEs9(yvy166, yvy168, ega) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cah) -> new_esEs12(new_compare26(yvy152, yvy155, cah), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), cad, cae) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, fee), fef)) -> new_esEs22(yvy4000, yvy3000, fee, fef) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs13(yvy4000, yvy3000, bh, ca, cb) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, ecg), ech)) -> new_esEs22(yvy40001, yvy30001, ecg, ech) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, ef)) -> new_esEs23(yvy40001, yvy30001, ef) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bff), bfg)) -> new_esEs22(yvy40000, yvy30000, bff, bfg) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egb)) -> new_ltEs11(yvy166, yvy168, egb) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_esEs19(yvy891, yvy901, cdf, cdg) new_compare0([], :(yvy3000, yvy3001), bhg) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhe), dhf)) -> new_esEs22(yvy4002, yvy3002, dhe, dhf) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bcf, bbc) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eae), eaf)) -> new_esEs19(yvy4001, yvy3001, eae, eaf) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], bhg)) -> new_compare0(yvy400, yvy300, bhg) new_esEs10(yvy4001, yvy3001, app(ty_[], dbc)) -> new_esEs17(yvy4001, yvy3001, dbc) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gf) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_lt10(yvy890, yvy900, cdh) new_ltEs20(yvy891, yvy901, app(app(ty_Either, che), chf)) -> new_ltEs5(yvy891, yvy901, che, chf) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgb, bgc) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, db), dc)) -> new_esEs22(yvy40002, yvy30002, db, dc) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbc) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_lt16(yvy153, yvy156, fcg, fch, fda) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffa)) -> new_esEs17(yvy4000, yvy3000, ffa) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_Either, bde), bdf)) -> new_ltEs5(yvy890, yvy900, bde, bdf) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], bhg) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], edc)) -> new_esEs17(yvy40000, yvy30000, edc) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), cad, cae) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fdg)) -> new_esEs17(yvy4000, yvy3000, fdg) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcd), bce), bbc) -> new_ltEs17(yvy890, yvy900, bcd, bce) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, bee)) -> new_esEs26(yvy4000, yvy3000, bee) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfb) -> True new_ltEs13(Just(yvy890), Nothing, cfb) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, feg)) -> new_esEs23(yvy4000, yvy3000, feg) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ed), ee)) -> new_esEs22(yvy40001, yvy30001, ed, ee) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, edg), edh)) -> new_esEs19(yvy40000, yvy30000, edg, edh) new_ltEs19(yvy892, yvy902, app(ty_Maybe, cca)) -> new_ltEs13(yvy892, yvy902, cca) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_@2, bdg), bdh)) -> new_ltEs17(yvy890, yvy900, bdg, bdh) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_lt4(yvy165, yvy167, ehh) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fgc) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fgc), fgc) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebc), ebd)) -> new_esEs19(yvy4000, yvy3000, ebc, ebd) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebb)) -> new_esEs26(yvy4001, yvy3001, ebb) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_lt4(yvy891, yvy901, cdc) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dde)) -> new_esEs23(yvy4000, yvy3000, dde) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_esEs22(yvy152, yvy155, dfc, dfd) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_esEs19(yvy165, yvy167, fac, fad) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ffg), ffh)) -> new_esEs22(yvy4000, yvy3000, ffg, ffh) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], cc)) -> new_esEs17(yvy40002, yvy30002, cc) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_lt10(yvy891, yvy901, ccf) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bcf), bbc)) -> new_ltEs5(yvy89, yvy90, bcf, bbc) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfa), dfb)) -> new_ltEs17(yvy103, yvy104, dfa, dfb) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, eab), eac), ead)) -> new_esEs13(yvy4001, yvy3001, eab, eac, ead) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dcc)) -> new_esEs23(yvy4001, yvy3001, dcc) new_lt22(yvy152, yvy155, app(ty_Ratio, cah)) -> new_lt10(yvy152, yvy155, cah) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbd)) -> new_ltEs11(yvy154, yvy157, fbd) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cac) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhb), bhc)) -> new_ltEs5(yvy96, yvy97, bhb, bhc) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bhh, caa, cab) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bhh), new_asAs(new_esEs5(yvy4001, yvy3001, caa), new_esEs4(yvy4002, yvy3002, cab))), bhh, caa, cab) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], ccg)) -> new_esEs17(yvy891, yvy901, ccg) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fga)) -> new_esEs23(yvy4000, yvy3000, fga) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, ddg, ddh) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dca), dcb)) -> new_esEs22(yvy4001, yvy3001, dca, dcb) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs12(yvy890, yvy900, bda, bdb, bdc) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbe), bbc) -> new_ltEs11(yvy890, yvy900, bbe) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bb) -> new_esEs12(new_compare7(yvy152, yvy155, bb), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs13(yvy890, yvy900, dac, dad, dae) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs13(yvy4000, yvy3000, dff, dfg, dfh) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gf) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efa), efb)) -> new_esEs19(yvy40000, yvy30000, efa, efb) new_compare7(Nothing, Nothing, cac) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dea)) -> new_ltEs9(yvy103, yvy104, dea) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, bc, bd, be) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_esEs22(yvy890, yvy900, dag, dah) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) -> LT new_lt6(yvy152, yvy155, bed) -> new_esEs12(new_compare0(yvy152, yvy155, bed), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs13(yvy4000, yvy3000, dcf, dcg, dch) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, ddc), ddd)) -> new_esEs22(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_lt16(yvy890, yvy900, dac, dad, dae) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbc) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs26(yvy4000, yvy3000, fgb) new_ltEs20(yvy891, yvy901, app(app(ty_@2, chg), chh)) -> new_ltEs17(yvy891, yvy901, chg, chh) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), hh, gf) -> False new_esEs22(Right(yvy40000), Left(yvy30000), hh, gf) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbd), bbc) -> new_ltEs9(yvy890, yvy900, bbd) new_compare0(:(yvy4000, yvy4001), [], bhg) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_lt5(yvy890, yvy900, dba, dbb) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbc) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_lt19(yvy890, yvy900, dag, dah) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, dd)) -> new_esEs23(yvy40002, yvy30002, dd) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccd), cce)) -> new_ltEs17(yvy892, yvy902, ccd, cce) new_compare30(Left(yvy4000), Left(yvy3000), cad, cae) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, cad), cad, cae) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehd)) -> new_lt6(yvy165, yvy167, ehd) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_esEs23(yvy165, yvy167, ehh) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs13(yvy4000, yvy3000, ffb, ffc, ffd) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddf)) -> new_esEs26(yvy4000, yvy3000, ddf) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, hg), gf) -> new_esEs26(yvy40000, yvy30000, hg) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfc)) -> new_ltEs9(yvy890, yvy900, cfc) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_esEs19(yvy153, yvy156, fde, fdf) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs12(yvy89, yvy90, cba, cbb, cbc) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bhg) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bhg), bhg) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgf)) -> new_esEs26(yvy4000, yvy3000, dgf) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, daa)) -> new_esEs26(yvy890, yvy900, daa) new_lt21(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_lt10(yvy165, yvy167, ehc) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_lt5(yvy890, yvy900, ceh, cfa) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dec), ded), dee)) -> new_ltEs12(yvy103, yvy104, dec, ded, dee) new_lt12(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_lt19(yvy890, yvy900, cef, ceg) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egf)) -> new_ltEs13(yvy166, yvy168, egf) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cac) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cac), cac) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, eb), ec)) -> new_esEs19(yvy40001, yvy30001, eb, ec) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], eca)) -> new_esEs17(yvy40001, yvy30001, eca) new_compare7(Nothing, Just(yvy3000), cac) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, gg), gh), ha), gf) -> new_esEs13(yvy40000, yvy30000, gg, gh, ha) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgd)) -> new_ltEs9(yvy96, yvy97, bgd) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fae, faf, fag) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_ltEs12(yvy154, yvy157, fbe, fbf, fbg) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_esEs26(yvy891, yvy901, ccf) new_ltEs21(yvy103, yvy104, app(app(ty_Either, deg), deh)) -> new_ltEs5(yvy103, yvy104, deg, deh) new_esEs33(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_esEs26(yvy890, yvy900, cdh) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, gc, gd) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, daf)) -> new_lt4(yvy890, yvy900, daf) new_compare16(yvy189, yvy190, False, bec) -> GT new_compare24(yvy96, yvy97, False, bgb, bgc) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgb), bgb, bgc) new_ltEs22(yvy166, yvy168, app(app(ty_Either, egg), egh)) -> new_ltEs5(yvy166, yvy168, egg, egh) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hb), hc), gf) -> new_esEs19(yvy40000, yvy30000, hb, hc) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, eda)) -> new_esEs23(yvy40001, yvy30001, eda) new_lt23(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_lt19(yvy153, yvy156, fdc, fdd) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, egc), egd), ege)) -> new_ltEs12(yvy166, yvy168, egc, egd, ege) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_lt5(yvy153, yvy156, fde, fdf) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_@2, bae), baf)) -> new_esEs19(yvy40000, yvy30000, bae, baf) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbd)) -> new_ltEs9(yvy892, yvy902, cbd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhd), bhe)) -> new_ltEs17(yvy96, yvy97, bhd, bhe) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dce)) -> new_esEs17(yvy4000, yvy3000, dce) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfb)) -> new_ltEs13(yvy89, yvy90, cfb) new_esEs34(yvy890, yvy900, app(ty_[], dab)) -> new_esEs17(yvy890, yvy900, dab) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, feh)) -> new_esEs26(yvy4000, yvy3000, feh) new_compare110(yvy205, yvy206, False, ebf, ebg) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs13(yvy891, yvy901, cch, cda, cdb) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbc) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dab)) -> new_lt6(yvy890, yvy900, dab) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bea, beb) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eea), eeb)) -> new_esEs22(yvy40000, yvy30000, eea, eeb) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fbh)) -> new_ltEs13(yvy154, yvy157, fbh) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], beg) -> False new_esEs17([], :(yvy30000, yvy30001), beg) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_lt5(yvy152, yvy155, bf, bg) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_lt19(yvy152, yvy155, dfc, dfd) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcd)) -> new_esEs26(yvy4001, yvy3001, dcd) new_ltEs21(yvy103, yvy104, app(ty_[], deb)) -> new_ltEs11(yvy103, yvy104, deb) new_ltEs13(Nothing, Just(yvy900), cfb) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhc), dhd)) -> new_esEs19(yvy4002, yvy3002, dhc, dhd) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, fdh), fea), feb)) -> new_esEs13(yvy4000, yvy3000, fdh, fea, feb) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eec)) -> new_esEs23(yvy40000, yvy30000, eec) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs12(EQ, EQ) new_compare13(x0, x1, x2, x3, False, x4, x5) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(EQ, LT) new_compare28(LT, EQ) new_compare16(x0, x1, False, x2) new_compare14(x0, x1, True, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt21(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Float) new_fsEs(x0) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Ordering) new_esEs23(Just(x0), Nothing, x1) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt22(x0, x1, app(ty_[], x2)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare7(Just(x0), Just(x1), x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_lt23(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs39(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_compare28(GT, GT) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_ltEs24(x0, x1, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_esEs17([], [], x0) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Double) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare212(x0, x1, False, x2) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare7(Nothing, Nothing, x0) new_lt23(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1, x2) new_primPlusNat0(Zero, Succ(x0)) new_compare110(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_ltEs11(x0, x1, x2) new_lt21(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs22(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs10(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True, x2) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_lt6(x0, x1, x2) new_esEs33(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Int) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_compare25(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_lt5(x0, x1, x2, x3) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs14(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_compare24(x0, x1, True, x2, x3) new_esEs18(False, True) new_esEs18(True, False) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_compare19(False, False) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs32(x0, x1, app(ty_[], x2)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Zero) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_esEs16(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_ltEs13(Just(x0), Nothing, x1) new_lt12(x0, x1, ty_Int) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Float) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_lt10(x0, x1, x2) new_esEs31(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCompAux00(x0, EQ) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_compare212(x0, x1, True, x2) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_esEs17([], :(x0, x1), x2) new_asAs(False, x0) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs33(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt22(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs37(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Nothing, Nothing, x0) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Zero, Zero) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_lt19(x0, x1, x2, x3) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_pePe(False, x0) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Integer) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_lt16(x0, x1, x2, x3, x4) new_esEs6(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Float) new_ltEs13(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, ty_Char) new_compare211(x0, x1, True, x2, x3) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Int) new_compare7(Nothing, Just(x0), x1) new_ltEs21(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare6(x0, x1) new_lt13(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Int) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Zero) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_esEs36(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, x0) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_esEs23(Nothing, Just(x0), x1) new_ltEs13(Nothing, Nothing, x0) new_lt7(x0, x1) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs18(False, False) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Float) new_esEs23(Just(x0), Just(x1), ty_@0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(ty_[], x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_ltEs19(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Ordering) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_lt21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(x0, x1, ty_Ordering) new_ltEs9(x0, x1, x2) new_esEs35(x0, x1, ty_Double) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt12(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare28(LT, LT) new_esEs25(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(x0, x1) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_compare14(x0, x1, False, x2, x3) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Float) new_compare211(x0, x1, False, x2, x3) new_esEs14(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Bool) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_compare110(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_ltEs22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_compare25(x0, x1, app(ty_[], x2)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs11(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_not(False) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_esEs39(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_compare25(x0, x1, app(ty_Ratio, x2)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs15(x0, x1, ty_Float) new_compare24(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs38(x0, x1, ty_@0) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs15(x0, x1, ty_Char) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_compare7(Just(x0), Nothing, x1) new_esEs4(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt11(x0, x1, ty_Float) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare19(True, False) new_compare19(False, True) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) new_esEs17(:(x0, x1), [], x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (87) 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_compare25(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_compare25(yvy400, yvy500, h)), h, ba)) ---------------------------------------- (88) 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_compare25(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_compare25(yvy400, yvy500, h)), h, ba) The TRS R consists of the following rules: new_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbf), bbg), bbh), bbc) -> new_ltEs12(yvy890, yvy900, bbf, bbg, bbh) new_ltEs20(yvy891, yvy901, app(ty_[], cgh)) -> new_ltEs11(yvy891, yvy901, cgh) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_lt5(yvy891, yvy901, cdf, cdg) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Maybe, bdd)) -> new_ltEs13(yvy890, yvy900, bdd) new_lt20(yvy890, yvy900, app(ty_Ratio, daa)) -> new_lt10(yvy890, yvy900, daa) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cgc), cgd)) -> new_ltEs17(yvy890, yvy900, cgc, cgd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_lt19(yvy891, yvy901, cdd, cde) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fah, fba, fbb) -> new_esEs12(new_compare27(yvy152, yvy155, fah, fba, fbb), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_esEs19(yvy152, yvy155, bf, bg) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bca), bbc) -> new_ltEs13(yvy890, yvy900, bca) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cfh)) -> new_ltEs13(yvy890, yvy900, cfh) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eee)) -> new_esEs17(yvy40000, yvy30000, eee) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bea, beb) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebc, ebd) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebc), new_esEs35(yvy40001, yvy30001, ebd)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], ge), gf) -> new_esEs17(yvy40000, yvy30000, ge) new_compare25(yvy400, yvy300, app(ty_Ratio, bhf)) -> new_compare26(yvy400, yvy300, bhf) new_lt19(yvy152, yvy155, dfc, dfd) -> new_esEs12(new_compare30(yvy152, yvy155, dfc, dfd), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bed)) -> new_lt6(yvy152, yvy155, bed) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hf), gf) -> new_esEs23(yvy40000, yvy30000, hf) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fcf)) -> new_esEs17(yvy153, yvy156, fcf) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_lt16(yvy165, yvy167, ehe, ehf, ehg) new_esEs39(yvy152, yvy155, app(ty_Ratio, cah)) -> new_esEs26(yvy152, yvy155, cah) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_lt16(yvy891, yvy901, cch, cda, cdb) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_esEs23(yvy153, yvy156, fdb) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs13(yvy4001, yvy3001, dbd, dbe, dbf) new_lt21(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_lt19(yvy165, yvy167, faa, fab) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], beg)) -> new_esEs17(yvy4000, yvy3000, beg) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bcf, bbc) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gf) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbe)) -> new_ltEs11(yvy892, yvy902, cbe) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gf) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cea)) -> new_esEs17(yvy890, yvy900, cea) new_lt21(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_lt5(yvy165, yvy167, fac, fad) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, bc, bd, be) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_lt4(yvy153, yvy156, fdb) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_esEs22(yvy165, yvy167, faa, fab) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fca), fcb)) -> new_ltEs5(yvy154, yvy157, fca, fcb) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs13(yvy40000, yvy30000, bfa, bfb, bfc) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs13(yvy4002, yvy3002, dgh, dha, dhb) new_esEs23(Nothing, Just(yvy30000), ebe) -> False new_esEs23(Just(yvy40000), Nothing, ebe) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gf) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cgg)) -> new_ltEs9(yvy891, yvy901, cgg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_[], baa)) -> new_esEs17(yvy40000, yvy30000, baa) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cge, cgf) -> new_pePe(new_lt20(yvy890, yvy900, cge), new_asAs(new_esEs34(yvy890, yvy900, cge), new_ltEs20(yvy891, yvy901, cgf))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, de)) -> new_esEs26(yvy40002, yvy30002, de) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_esEs22(yvy153, yvy156, fdc, fdd) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bec) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], ccg)) -> new_lt6(yvy891, yvy901, ccg) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbc) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fec), fed)) -> new_esEs19(yvy4000, yvy3000, fec, fed) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebe) -> True new_lt12(yvy890, yvy900, app(ty_[], cea)) -> new_lt6(yvy890, yvy900, cea) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, daf)) -> new_esEs23(yvy890, yvy900, daf) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfe)) -> new_esEs17(yvy4000, yvy3000, dfe) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bga)) -> new_esEs26(yvy40000, yvy30000, bga) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], bef)) -> new_ltEs11(yvy89, yvy90, bef) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bge)) -> new_ltEs11(yvy96, yvy97, bge) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, fg), fh)) -> new_esEs22(yvy40000, yvy30000, fg, fh) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbc) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fae, faf, fag) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fae), new_asAs(new_esEs39(yvy152, yvy155, fae), new_pePe(new_lt23(yvy153, yvy156, faf), new_asAs(new_esEs38(yvy153, yvy156, faf), new_ltEs23(yvy154, yvy157, fag)))), fae, faf, fag) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcb), bcc), bbc) -> new_ltEs5(yvy890, yvy900, bcb, bcc) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, cee)) -> new_esEs23(yvy890, yvy900, cee) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cac)) -> new_compare7(yvy400, yvy300, cac) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edb)) -> new_esEs26(yvy40001, yvy30001, edb) new_lt22(yvy152, yvy155, app(ty_Maybe, bb)) -> new_lt4(yvy152, yvy155, bb) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, bef) -> new_fsEs(new_compare0(yvy89, yvy90, bef)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) new_compare30(Right(yvy4000), Right(yvy3000), cad, cae) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cae), cad, cae) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_lt16(yvy152, yvy155, fah, fba, fbb) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, cha), chb), chc)) -> new_ltEs12(yvy891, yvy901, cha, chb, chc) new_compare110(yvy205, yvy206, True, ebf, ebg) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehd)) -> new_esEs17(yvy165, yvy167, ehd) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, cg), da)) -> new_esEs19(yvy40002, yvy30002, cg, da) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), bee) -> new_asAs(new_esEs30(yvy40000, yvy30000, bee), new_esEs29(yvy40001, yvy30001, bee)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efe)) -> new_esEs23(yvy40000, yvy30000, efe) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dga), dgb)) -> new_esEs19(yvy4000, yvy3000, dga, dgb) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bfd), bfe)) -> new_esEs19(yvy40000, yvy30000, bfd, bfe) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Maybe, bba)) -> new_esEs23(yvy40000, yvy30000, bba) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efc), efd)) -> new_esEs22(yvy40000, yvy30000, efc, efd) new_esEs33(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_esEs22(yvy890, yvy900, cef, ceg) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_esEs13(yvy40001, yvy30001, ecb, ecc, ecd) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs12(yvy892, yvy902, cbf, cbg, cbh) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fcf)) -> new_lt6(yvy153, yvy156, fcf) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cba, cbb, cbc) -> new_pePe(new_lt12(yvy890, yvy900, cba), new_asAs(new_esEs33(yvy890, yvy900, cba), new_pePe(new_lt11(yvy891, yvy901, cbb), new_asAs(new_esEs32(yvy891, yvy901, cbb), new_ltEs19(yvy892, yvy902, cbc))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bh, ca, cb) -> new_asAs(new_esEs16(yvy40000, yvy30000, bh), new_asAs(new_esEs15(yvy40001, yvy30001, ca), new_esEs14(yvy40002, yvy30002, cb))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, gc, gd) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chd)) -> new_ltEs13(yvy891, yvy901, chd) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], eh)) -> new_esEs17(yvy40000, yvy30000, eh) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dgc), dgd)) -> new_esEs22(yvy4000, yvy3000, dgc, dgd) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cfd)) -> new_ltEs11(yvy890, yvy900, cfd) new_esEs39(yvy152, yvy155, app(ty_[], bed)) -> new_esEs17(yvy152, yvy155, bed) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, ga)) -> new_esEs23(yvy40000, yvy30000, ga) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_[], bch)) -> new_ltEs11(yvy890, yvy900, bch) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Ratio, bcg)) -> new_ltEs9(yvy890, yvy900, bcg) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_lt16(yvy890, yvy900, ceb, cec, ced) new_esEs39(yvy152, yvy155, app(ty_Maybe, bb)) -> new_esEs23(yvy152, yvy155, bb) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eed)) -> new_esEs26(yvy40000, yvy30000, eed) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], beg) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs12(yvy890, yvy900, cfe, cff, cfg) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_esEs22(yvy891, yvy901, cdd, cde) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eag), eah)) -> new_esEs22(yvy4001, yvy3001, eag, eah) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hd), he), gf) -> new_esEs22(yvy40000, yvy30000, hd, he) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs12(yvy96, yvy97, bgf, bgg, bgh) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cga), cgb)) -> new_ltEs5(yvy890, yvy900, cga, cgb) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), caf, cag) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, caf), new_esEs10(yvy4001, yvy3001, cag)), caf, cag) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbc)) -> new_ltEs9(yvy154, yvy157, fbc) new_lt23(yvy153, yvy156, app(ty_Ratio, fce)) -> new_lt10(yvy153, yvy156, fce) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbc) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs13(yvy40000, yvy30000, edd, ede, edf) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, dhh)) -> new_esEs26(yvy4002, yvy3002, dhh) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_esEs23(yvy891, yvy901, cdc) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fgc) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, eha), ehb)) -> new_ltEs17(yvy166, yvy168, eha, ehb) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eba)) -> new_esEs23(yvy4001, yvy3001, eba) new_compare25(yvy400, yvy300, app(app(app(ty_@3, bhh), caa), cab)) -> new_compare27(yvy400, yvy300, bhh, caa, cab) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs13(yvy40000, yvy30000, fa, fb, fc) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_esEs13(yvy152, yvy155, fah, fba, fbb) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dda), ddb)) -> new_esEs19(yvy4000, yvy3000, dda, ddb) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs13(yvy40000, yvy30000, eef, eeg, eeh) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bha)) -> new_ltEs13(yvy96, yvy97, bha) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ece), ecf)) -> new_esEs19(yvy40001, yvy30001, ece, ecf) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fcc), fcd)) -> new_ltEs17(yvy154, yvy157, fcc, fcd) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs13(yvy153, yvy156, fcg, fch, fda) new_lt5(yvy152, yvy155, bf, bg) -> new_esEs12(new_compare8(yvy152, yvy155, bf, bg), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs13(yvy40001, yvy30001, dg, dh, ea) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, cee)) -> new_lt4(yvy890, yvy900, cee) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dbg), dbh)) -> new_esEs19(yvy4001, yvy3001, dbg, dbh) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs13(yvy40002, yvy30002, cd, ce, cf) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dge)) -> new_esEs23(yvy4000, yvy3000, dge) new_esEs33(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_esEs19(yvy890, yvy900, ceh, cfa) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffe), fff)) -> new_esEs19(yvy4000, yvy3000, ffe, fff) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy89, yvy90, cge, cgf) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs13(yvy165, yvy167, ehe, ehf, ehg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Ratio, bbb)) -> new_esEs26(yvy40000, yvy30000, bbb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gf) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gb)) -> new_esEs26(yvy40000, yvy30000, gb) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), beg) -> new_asAs(new_esEs31(yvy40000, yvy30000, beg), new_esEs17(yvy40001, yvy30001, beg)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, efg, efh) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gf) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebe)) -> new_esEs23(yvy4000, yvy3000, ebe) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ebh) -> new_fsEs(new_compare26(yvy89, yvy90, ebh)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, ddg, ddh) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, ddh), ddg, ddh) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, eg)) -> new_esEs26(yvy40001, yvy30001, eg) new_compare25(yvy400, yvy300, app(app(ty_@2, caf), cag)) -> new_compare8(yvy400, yvy300, caf, cag) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fce)) -> new_esEs26(yvy153, yvy156, fce) new_esEs5(yvy4001, yvy3001, app(ty_[], eaa)) -> new_esEs17(yvy4001, yvy3001, eaa) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, eff)) -> new_esEs26(yvy40000, yvy30000, eff) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ebh)) -> new_ltEs9(yvy89, yvy90, ebh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, hh), gf)) -> new_esEs22(yvy4000, yvy3000, hh, gf) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_esEs19(yvy890, yvy900, dba, dbb) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, cad), cae)) -> new_compare30(yvy400, yvy300, cad, cae) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs13(yvy40000, yvy30000, bab, bac, bad) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccb), ccc)) -> new_ltEs5(yvy892, yvy902, ccb, ccc) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gf) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_esEs26(yvy165, yvy167, ehc) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bfh)) -> new_esEs23(yvy40000, yvy30000, bfh) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_Either, bag), bah)) -> new_esEs22(yvy40000, yvy30000, bag, bah) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dgg)) -> new_esEs17(yvy4002, yvy3002, dgg) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, dhg)) -> new_esEs23(yvy4002, yvy3002, dhg) new_compare210(yvy165, yvy166, yvy167, yvy168, False, efg, efh) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, efg), new_asAs(new_esEs37(yvy165, yvy167, efg), new_ltEs22(yvy166, yvy168, efh)), efg, efh) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], beh)) -> new_esEs17(yvy40000, yvy30000, beh) new_ltEs21(yvy103, yvy104, app(ty_Maybe, def)) -> new_ltEs13(yvy103, yvy104, def) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fd), ff)) -> new_esEs19(yvy40000, yvy30000, fd, ff) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], df)) -> new_esEs17(yvy40001, yvy30001, df) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs13(yvy890, yvy900, ceb, cec, ced) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbc) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, ega)) -> new_ltEs9(yvy166, yvy168, ega) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cah) -> new_esEs12(new_compare26(yvy152, yvy155, cah), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), cad, cae) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, fee), fef)) -> new_esEs22(yvy4000, yvy3000, fee, fef) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs13(yvy4000, yvy3000, bh, ca, cb) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, ecg), ech)) -> new_esEs22(yvy40001, yvy30001, ecg, ech) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, ef)) -> new_esEs23(yvy40001, yvy30001, ef) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bff), bfg)) -> new_esEs22(yvy40000, yvy30000, bff, bfg) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egb)) -> new_ltEs11(yvy166, yvy168, egb) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_esEs19(yvy891, yvy901, cdf, cdg) new_compare0([], :(yvy3000, yvy3001), bhg) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhe), dhf)) -> new_esEs22(yvy4002, yvy3002, dhe, dhf) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bcf, bbc) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eae), eaf)) -> new_esEs19(yvy4001, yvy3001, eae, eaf) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], bhg)) -> new_compare0(yvy400, yvy300, bhg) new_esEs10(yvy4001, yvy3001, app(ty_[], dbc)) -> new_esEs17(yvy4001, yvy3001, dbc) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gf) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_lt10(yvy890, yvy900, cdh) new_ltEs20(yvy891, yvy901, app(app(ty_Either, che), chf)) -> new_ltEs5(yvy891, yvy901, che, chf) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgb, bgc) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, db), dc)) -> new_esEs22(yvy40002, yvy30002, db, dc) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbc) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_lt16(yvy153, yvy156, fcg, fch, fda) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffa)) -> new_esEs17(yvy4000, yvy3000, ffa) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_Either, bde), bdf)) -> new_ltEs5(yvy890, yvy900, bde, bdf) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], bhg) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], edc)) -> new_esEs17(yvy40000, yvy30000, edc) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), cad, cae) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fdg)) -> new_esEs17(yvy4000, yvy3000, fdg) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcd), bce), bbc) -> new_ltEs17(yvy890, yvy900, bcd, bce) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, bee)) -> new_esEs26(yvy4000, yvy3000, bee) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfb) -> True new_ltEs13(Just(yvy890), Nothing, cfb) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, feg)) -> new_esEs23(yvy4000, yvy3000, feg) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ed), ee)) -> new_esEs22(yvy40001, yvy30001, ed, ee) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, edg), edh)) -> new_esEs19(yvy40000, yvy30000, edg, edh) new_ltEs19(yvy892, yvy902, app(ty_Maybe, cca)) -> new_ltEs13(yvy892, yvy902, cca) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_@2, bdg), bdh)) -> new_ltEs17(yvy890, yvy900, bdg, bdh) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_lt4(yvy165, yvy167, ehh) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fgc) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fgc), fgc) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebc), ebd)) -> new_esEs19(yvy4000, yvy3000, ebc, ebd) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebb)) -> new_esEs26(yvy4001, yvy3001, ebb) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_lt4(yvy891, yvy901, cdc) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dde)) -> new_esEs23(yvy4000, yvy3000, dde) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_esEs22(yvy152, yvy155, dfc, dfd) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_esEs19(yvy165, yvy167, fac, fad) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ffg), ffh)) -> new_esEs22(yvy4000, yvy3000, ffg, ffh) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], cc)) -> new_esEs17(yvy40002, yvy30002, cc) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_lt10(yvy891, yvy901, ccf) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bcf), bbc)) -> new_ltEs5(yvy89, yvy90, bcf, bbc) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfa), dfb)) -> new_ltEs17(yvy103, yvy104, dfa, dfb) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, eab), eac), ead)) -> new_esEs13(yvy4001, yvy3001, eab, eac, ead) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dcc)) -> new_esEs23(yvy4001, yvy3001, dcc) new_lt22(yvy152, yvy155, app(ty_Ratio, cah)) -> new_lt10(yvy152, yvy155, cah) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbd)) -> new_ltEs11(yvy154, yvy157, fbd) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cac) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhb), bhc)) -> new_ltEs5(yvy96, yvy97, bhb, bhc) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bhh, caa, cab) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bhh), new_asAs(new_esEs5(yvy4001, yvy3001, caa), new_esEs4(yvy4002, yvy3002, cab))), bhh, caa, cab) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], ccg)) -> new_esEs17(yvy891, yvy901, ccg) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fga)) -> new_esEs23(yvy4000, yvy3000, fga) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, ddg, ddh) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dca), dcb)) -> new_esEs22(yvy4001, yvy3001, dca, dcb) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs12(yvy890, yvy900, bda, bdb, bdc) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbe), bbc) -> new_ltEs11(yvy890, yvy900, bbe) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bb) -> new_esEs12(new_compare7(yvy152, yvy155, bb), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs13(yvy890, yvy900, dac, dad, dae) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs13(yvy4000, yvy3000, dff, dfg, dfh) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gf) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efa), efb)) -> new_esEs19(yvy40000, yvy30000, efa, efb) new_compare7(Nothing, Nothing, cac) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dea)) -> new_ltEs9(yvy103, yvy104, dea) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, bc, bd, be) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_esEs22(yvy890, yvy900, dag, dah) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) -> LT new_lt6(yvy152, yvy155, bed) -> new_esEs12(new_compare0(yvy152, yvy155, bed), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs13(yvy4000, yvy3000, dcf, dcg, dch) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, ddc), ddd)) -> new_esEs22(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_lt16(yvy890, yvy900, dac, dad, dae) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbc) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs26(yvy4000, yvy3000, fgb) new_ltEs20(yvy891, yvy901, app(app(ty_@2, chg), chh)) -> new_ltEs17(yvy891, yvy901, chg, chh) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), hh, gf) -> False new_esEs22(Right(yvy40000), Left(yvy30000), hh, gf) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbd), bbc) -> new_ltEs9(yvy890, yvy900, bbd) new_compare0(:(yvy4000, yvy4001), [], bhg) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_lt5(yvy890, yvy900, dba, dbb) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbc) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_lt19(yvy890, yvy900, dag, dah) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, dd)) -> new_esEs23(yvy40002, yvy30002, dd) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccd), cce)) -> new_ltEs17(yvy892, yvy902, ccd, cce) new_compare30(Left(yvy4000), Left(yvy3000), cad, cae) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, cad), cad, cae) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehd)) -> new_lt6(yvy165, yvy167, ehd) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_esEs23(yvy165, yvy167, ehh) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs13(yvy4000, yvy3000, ffb, ffc, ffd) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddf)) -> new_esEs26(yvy4000, yvy3000, ddf) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, hg), gf) -> new_esEs26(yvy40000, yvy30000, hg) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfc)) -> new_ltEs9(yvy890, yvy900, cfc) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_esEs19(yvy153, yvy156, fde, fdf) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs12(yvy89, yvy90, cba, cbb, cbc) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bhg) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bhg), bhg) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgf)) -> new_esEs26(yvy4000, yvy3000, dgf) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, daa)) -> new_esEs26(yvy890, yvy900, daa) new_lt21(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_lt10(yvy165, yvy167, ehc) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_lt5(yvy890, yvy900, ceh, cfa) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dec), ded), dee)) -> new_ltEs12(yvy103, yvy104, dec, ded, dee) new_lt12(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_lt19(yvy890, yvy900, cef, ceg) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egf)) -> new_ltEs13(yvy166, yvy168, egf) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cac) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cac), cac) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, eb), ec)) -> new_esEs19(yvy40001, yvy30001, eb, ec) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], eca)) -> new_esEs17(yvy40001, yvy30001, eca) new_compare7(Nothing, Just(yvy3000), cac) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, gg), gh), ha), gf) -> new_esEs13(yvy40000, yvy30000, gg, gh, ha) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgd)) -> new_ltEs9(yvy96, yvy97, bgd) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fae, faf, fag) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_ltEs12(yvy154, yvy157, fbe, fbf, fbg) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_esEs26(yvy891, yvy901, ccf) new_ltEs21(yvy103, yvy104, app(app(ty_Either, deg), deh)) -> new_ltEs5(yvy103, yvy104, deg, deh) new_esEs33(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_esEs26(yvy890, yvy900, cdh) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, gc, gd) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, daf)) -> new_lt4(yvy890, yvy900, daf) new_compare16(yvy189, yvy190, False, bec) -> GT new_compare24(yvy96, yvy97, False, bgb, bgc) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgb), bgb, bgc) new_ltEs22(yvy166, yvy168, app(app(ty_Either, egg), egh)) -> new_ltEs5(yvy166, yvy168, egg, egh) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hb), hc), gf) -> new_esEs19(yvy40000, yvy30000, hb, hc) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, eda)) -> new_esEs23(yvy40001, yvy30001, eda) new_lt23(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_lt19(yvy153, yvy156, fdc, fdd) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, egc), egd), ege)) -> new_ltEs12(yvy166, yvy168, egc, egd, ege) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_lt5(yvy153, yvy156, fde, fdf) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_@2, bae), baf)) -> new_esEs19(yvy40000, yvy30000, bae, baf) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbd)) -> new_ltEs9(yvy892, yvy902, cbd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhd), bhe)) -> new_ltEs17(yvy96, yvy97, bhd, bhe) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dce)) -> new_esEs17(yvy4000, yvy3000, dce) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfb)) -> new_ltEs13(yvy89, yvy90, cfb) new_esEs34(yvy890, yvy900, app(ty_[], dab)) -> new_esEs17(yvy890, yvy900, dab) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, feh)) -> new_esEs26(yvy4000, yvy3000, feh) new_compare110(yvy205, yvy206, False, ebf, ebg) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs13(yvy891, yvy901, cch, cda, cdb) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbc) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dab)) -> new_lt6(yvy890, yvy900, dab) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bea, beb) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eea), eeb)) -> new_esEs22(yvy40000, yvy30000, eea, eeb) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fbh)) -> new_ltEs13(yvy154, yvy157, fbh) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], beg) -> False new_esEs17([], :(yvy30000, yvy30001), beg) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_lt5(yvy152, yvy155, bf, bg) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_lt19(yvy152, yvy155, dfc, dfd) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcd)) -> new_esEs26(yvy4001, yvy3001, dcd) new_ltEs21(yvy103, yvy104, app(ty_[], deb)) -> new_ltEs11(yvy103, yvy104, deb) new_ltEs13(Nothing, Just(yvy900), cfb) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhc), dhd)) -> new_esEs19(yvy4002, yvy3002, dhc, dhd) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, fdh), fea), feb)) -> new_esEs13(yvy4000, yvy3000, fdh, fea, feb) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eec)) -> new_esEs23(yvy40000, yvy30000, eec) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs12(EQ, EQ) new_compare13(x0, x1, x2, x3, False, x4, x5) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(EQ, LT) new_compare28(LT, EQ) new_compare16(x0, x1, False, x2) new_compare14(x0, x1, True, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt21(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Float) new_fsEs(x0) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Ordering) new_esEs23(Just(x0), Nothing, x1) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt22(x0, x1, app(ty_[], x2)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare7(Just(x0), Just(x1), x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_lt23(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs39(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_compare28(GT, GT) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_ltEs24(x0, x1, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_esEs17([], [], x0) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Double) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare212(x0, x1, False, x2) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare7(Nothing, Nothing, x0) new_lt23(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1, x2) new_primPlusNat0(Zero, Succ(x0)) new_compare110(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_ltEs11(x0, x1, x2) new_lt21(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs22(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs10(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True, x2) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_lt6(x0, x1, x2) new_esEs33(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Int) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_compare25(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_lt5(x0, x1, x2, x3) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs14(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_compare24(x0, x1, True, x2, x3) new_esEs18(False, True) new_esEs18(True, False) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_compare19(False, False) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs32(x0, x1, app(ty_[], x2)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Zero) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_esEs16(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_ltEs13(Just(x0), Nothing, x1) new_lt12(x0, x1, ty_Int) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Float) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_lt10(x0, x1, x2) new_esEs31(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCompAux00(x0, EQ) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_compare212(x0, x1, True, x2) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_esEs17([], :(x0, x1), x2) new_asAs(False, x0) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs33(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt22(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs37(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Nothing, Nothing, x0) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Zero, Zero) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_lt19(x0, x1, x2, x3) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_pePe(False, x0) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Integer) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_lt16(x0, x1, x2, x3, x4) new_esEs6(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Float) new_ltEs13(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, ty_Char) new_compare211(x0, x1, True, x2, x3) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Int) new_compare7(Nothing, Just(x0), x1) new_ltEs21(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare6(x0, x1) new_lt13(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Int) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Zero) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_esEs36(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, x0) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_esEs23(Nothing, Just(x0), x1) new_ltEs13(Nothing, Nothing, x0) new_lt7(x0, x1) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs18(False, False) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Float) new_esEs23(Just(x0), Just(x1), ty_@0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(ty_[], x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_ltEs19(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Ordering) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_lt21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(x0, x1, ty_Ordering) new_ltEs9(x0, x1, x2) new_esEs35(x0, x1, ty_Double) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt12(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare28(LT, LT) new_esEs25(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(x0, x1) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_compare14(x0, x1, False, x2, x3) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Float) new_compare211(x0, x1, False, x2, x3) new_esEs14(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Bool) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_compare110(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_ltEs22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_compare25(x0, x1, app(ty_[], x2)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs11(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_not(False) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_esEs39(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_compare25(x0, x1, app(ty_Ratio, x2)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs15(x0, x1, ty_Float) new_compare24(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs38(x0, x1, ty_@0) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs15(x0, x1, ty_Char) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_compare7(Just(x0), Nothing, x1) new_esEs4(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt11(x0, x1, ty_Float) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare19(True, False) new_compare19(False, True) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) new_esEs17(:(x0, x1), [], x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (89) 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_compare25(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_compare25(yvy400, yvy500, h)), h, ba)) ---------------------------------------- (90) 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_compare25(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_compare25(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_compare25(yvy400, yvy500, h)), h, ba) The TRS R consists of the following rules: new_ltEs5(Left(yvy890), Left(yvy900), app(app(app(ty_@3, bbf), bbg), bbh), bbc) -> new_ltEs12(yvy890, yvy900, bbf, bbg, bbh) new_ltEs20(yvy891, yvy901, app(ty_[], cgh)) -> new_ltEs11(yvy891, yvy901, cgh) new_esEs39(yvy152, yvy155, ty_Char) -> new_esEs21(yvy152, yvy155) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt11(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_lt5(yvy891, yvy901, cdf, cdg) new_pePe(True, yvy305) -> True new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Maybe, bdd)) -> new_ltEs13(yvy890, yvy900, bdd) new_lt20(yvy890, yvy900, app(ty_Ratio, daa)) -> new_lt10(yvy890, yvy900, daa) new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_@2, cgc), cgd)) -> new_ltEs17(yvy890, yvy900, cgc, cgd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Char) -> new_ltEs15(yvy890, yvy900) new_lt11(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_lt19(yvy891, yvy901, cdd, cde) new_ltEs18(yvy96, yvy97, ty_Ordering) -> new_ltEs14(yvy96, yvy97) new_esEs37(yvy165, yvy167, ty_Ordering) -> new_esEs12(yvy165, yvy167) new_compare25(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy89, yvy90, ty_Ordering) -> new_ltEs14(yvy89, yvy90) new_lt16(yvy152, yvy155, fah, fba, fbb) -> new_esEs12(new_compare27(yvy152, yvy155, fah, fba, fbb), LT) new_esEs10(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_esEs18(True, True) -> True new_esEs39(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_esEs19(yvy152, yvy155, bf, bg) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Maybe, bca), bbc) -> new_ltEs13(yvy890, yvy900, bca) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Maybe, cfh)) -> new_ltEs13(yvy890, yvy900, cfh) new_lt20(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt11(yvy891, yvy901, ty_Float) -> new_lt7(yvy891, yvy901) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_[], eee)) -> new_esEs17(yvy40000, yvy30000, eee) new_lt11(yvy891, yvy901, ty_Integer) -> new_lt15(yvy891, yvy901) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(yvy196, yvy197, True, bea, beb) -> LT new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Integer) -> new_ltEs8(yvy890, yvy900) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_ltEs23(yvy154, yvy157, ty_Float) -> new_ltEs10(yvy154, yvy157) new_esEs19(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), ebc, ebd) -> new_asAs(new_esEs36(yvy40000, yvy30000, ebc), new_esEs35(yvy40001, yvy30001, ebd)) new_esEs14(yvy40002, yvy30002, ty_Double) -> new_esEs20(yvy40002, yvy30002) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_[], ge), gf) -> new_esEs17(yvy40000, yvy30000, ge) new_compare25(yvy400, yvy300, app(ty_Ratio, bhf)) -> new_compare26(yvy400, yvy300, bhf) new_lt19(yvy152, yvy155, dfc, dfd) -> new_esEs12(new_compare30(yvy152, yvy155, dfc, dfd), LT) new_compare28(LT, LT) -> EQ new_lt22(yvy152, yvy155, app(ty_[], bed)) -> new_lt6(yvy152, yvy155, bed) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Maybe, hf), gf) -> new_esEs23(yvy40000, yvy30000, hf) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_esEs38(yvy153, yvy156, app(ty_[], fcf)) -> new_esEs17(yvy153, yvy156, fcf) new_lt21(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_lt16(yvy165, yvy167, ehe, ehf, ehg) new_esEs39(yvy152, yvy155, app(ty_Ratio, cah)) -> new_esEs26(yvy152, yvy155, cah) new_lt11(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_lt16(yvy891, yvy901, cch, cda, cdb) new_compare19(True, True) -> EQ new_esEs38(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_esEs23(yvy153, yvy156, fdb) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_esEs10(yvy4001, yvy3001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs13(yvy4001, yvy3001, dbd, dbe, dbf) new_lt21(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_lt19(yvy165, yvy167, faa, fab) new_esEs37(yvy165, yvy167, ty_Int) -> new_esEs25(yvy165, yvy167) new_esEs6(yvy4000, yvy3000, app(ty_[], beg)) -> new_esEs17(yvy4000, yvy3000, beg) new_esEs34(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_esEs32(yvy891, yvy901, ty_Int) -> new_esEs25(yvy891, yvy901) new_lt15(yvy152, yvy155) -> new_esEs12(new_compare15(yvy152, yvy155), LT) new_esEs14(yvy40002, yvy30002, ty_Integer) -> new_esEs28(yvy40002, yvy30002) new_esEs7(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Right(yvy900), bcf, bbc) -> True new_ltEs13(Just(yvy890), Just(yvy900), ty_Double) -> new_ltEs16(yvy890, yvy900) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Float) -> new_ltEs10(yvy890, yvy900) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Double, gf) -> new_esEs20(yvy40000, yvy30000) new_lt9(yvy152, yvy155) -> new_esEs12(new_compare6(yvy152, yvy155), LT) new_lt8(yvy152, yvy155) -> new_esEs12(new_compare18(yvy152, yvy155), LT) new_compare28(EQ, GT) -> LT new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_[], cbe)) -> new_ltEs11(yvy892, yvy902, cbe) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Integer, gf) -> new_esEs28(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, app(ty_[], cea)) -> new_esEs17(yvy890, yvy900, cea) new_lt21(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_lt5(yvy165, yvy167, fac, fad) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, bc, bd, be) -> GT new_ltEs20(yvy891, yvy901, ty_@0) -> new_ltEs4(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_lt23(yvy153, yvy156, app(ty_Maybe, fdb)) -> new_lt4(yvy153, yvy156, fdb) new_compare19(True, False) -> GT new_esEs37(yvy165, yvy167, app(app(ty_Either, faa), fab)) -> new_esEs22(yvy165, yvy167, faa, fab) new_esEs14(yvy40002, yvy30002, ty_Float) -> new_esEs24(yvy40002, yvy30002) new_ltEs4(yvy89, yvy90) -> new_fsEs(new_compare9(yvy89, yvy90)) new_esEs39(yvy152, yvy155, ty_Integer) -> new_esEs28(yvy152, yvy155) new_ltEs23(yvy154, yvy157, app(app(ty_Either, fca), fcb)) -> new_ltEs5(yvy154, yvy157, fca, fcb) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs13(yvy40000, yvy30000, bfa, bfb, bfc) new_esEs4(yvy4002, yvy3002, ty_Float) -> new_esEs24(yvy4002, yvy3002) new_esEs4(yvy4002, yvy3002, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs13(yvy4002, yvy3002, dgh, dha, dhb) new_esEs23(Nothing, Just(yvy30000), ebe) -> False new_esEs23(Just(yvy40000), Nothing, ebe) -> False new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Bool) -> new_ltEs6(yvy891, yvy901) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Float, gf) -> new_esEs24(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs39(yvy152, yvy155, ty_Double) -> new_esEs20(yvy152, yvy155) new_ltEs20(yvy891, yvy901, app(ty_Ratio, cgg)) -> new_ltEs9(yvy891, yvy901, cgg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_[], baa)) -> new_esEs17(yvy40000, yvy30000, baa) new_ltEs17(@2(yvy890, yvy891), @2(yvy900, yvy901), cge, cgf) -> new_pePe(new_lt20(yvy890, yvy900, cge), new_asAs(new_esEs34(yvy890, yvy900, cge), new_ltEs20(yvy891, yvy901, cgf))) new_esEs14(yvy40002, yvy30002, app(ty_Ratio, de)) -> new_esEs26(yvy40002, yvy30002, de) new_not(True) -> False new_esEs37(yvy165, yvy167, ty_Bool) -> new_esEs18(yvy165, yvy167) new_esEs38(yvy153, yvy156, ty_Bool) -> new_esEs18(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs38(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_esEs22(yvy153, yvy156, fdc, fdd) new_lt23(yvy153, yvy156, ty_Int) -> new_lt9(yvy153, yvy156) new_ltEs20(yvy891, yvy901, ty_Ordering) -> new_ltEs14(yvy891, yvy901) new_ltEs23(yvy154, yvy157, ty_Char) -> new_ltEs15(yvy154, yvy157) new_compare16(yvy189, yvy190, True, bec) -> LT new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_lt11(yvy891, yvy901, app(ty_[], ccg)) -> new_lt6(yvy891, yvy901, ccg) new_primCompAux00(yvy56, LT) -> LT new_lt17(yvy152, yvy155) -> new_esEs12(new_compare28(yvy152, yvy155), LT) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(Left(yvy890), Left(yvy900), ty_Bool, bbc) -> new_ltEs6(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Float) -> new_lt7(yvy152, yvy155) new_ltEs19(yvy892, yvy902, ty_Bool) -> new_ltEs6(yvy892, yvy902) new_ltEs13(Just(yvy890), Just(yvy900), ty_Float) -> new_ltEs10(yvy890, yvy900) new_lt22(yvy152, yvy155, ty_Integer) -> new_lt15(yvy152, yvy155) new_esEs10(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs8(yvy4000, yvy3000, app(app(ty_@2, fec), fed)) -> new_esEs19(yvy4000, yvy3000, fec, fed) new_esEs32(yvy891, yvy901, ty_Ordering) -> new_esEs12(yvy891, yvy901) new_lt12(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_lt20(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs8(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs23(Nothing, Nothing, ebe) -> True new_lt12(yvy890, yvy900, app(ty_[], cea)) -> new_lt6(yvy890, yvy900, cea) new_esEs39(yvy152, yvy155, ty_Float) -> new_esEs24(yvy152, yvy155) new_ltEs18(yvy96, yvy97, ty_@0) -> new_ltEs4(yvy96, yvy97) new_esEs12(LT, LT) -> True new_esEs34(yvy890, yvy900, app(ty_Maybe, daf)) -> new_esEs23(yvy890, yvy900, daf) new_lt21(yvy165, yvy167, ty_Integer) -> new_lt15(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_[], dfe)) -> new_esEs17(yvy4000, yvy3000, dfe) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_esEs31(yvy40000, yvy30000, app(ty_Ratio, bga)) -> new_esEs26(yvy40000, yvy30000, bga) new_esEs16(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs33(yvy890, yvy900, ty_@0) -> new_esEs27(yvy890, yvy900) new_ltEs10(yvy89, yvy90) -> new_fsEs(new_compare17(yvy89, yvy90)) new_ltEs24(yvy89, yvy90, app(ty_[], bef)) -> new_ltEs11(yvy89, yvy90, bef) new_ltEs24(yvy89, yvy90, ty_Double) -> new_ltEs16(yvy89, yvy90) new_esEs10(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_ltEs18(yvy96, yvy97, app(ty_[], bge)) -> new_ltEs11(yvy96, yvy97, bge) new_ltEs22(yvy166, yvy168, ty_Integer) -> new_ltEs8(yvy166, yvy168) new_esEs16(yvy40000, yvy30000, app(app(ty_Either, fg), fh)) -> new_esEs22(yvy40000, yvy30000, fg, fh) new_ltEs5(Left(yvy890), Left(yvy900), ty_@0, bbc) -> new_ltEs4(yvy890, yvy900) new_ltEs22(yvy166, yvy168, ty_Int) -> new_ltEs7(yvy166, yvy168) new_ltEs19(yvy892, yvy902, ty_@0) -> new_ltEs4(yvy892, yvy902) new_primCompAux00(yvy56, GT) -> GT new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, False, fae, faf, fag) -> new_compare10(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, new_lt22(yvy152, yvy155, fae), new_asAs(new_esEs39(yvy152, yvy155, fae), new_pePe(new_lt23(yvy153, yvy156, faf), new_asAs(new_esEs38(yvy153, yvy156, faf), new_ltEs23(yvy154, yvy157, fag)))), fae, faf, fag) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_Either, bcb), bcc), bbc) -> new_ltEs5(yvy890, yvy900, bcb, bcc) new_ltEs22(yvy166, yvy168, ty_Float) -> new_ltEs10(yvy166, yvy168) new_ltEs14(EQ, EQ) -> True new_esEs33(yvy890, yvy900, app(ty_Maybe, cee)) -> new_esEs23(yvy890, yvy900, cee) new_esEs23(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare25(yvy400, yvy300, app(ty_Maybe, cac)) -> new_compare7(yvy400, yvy300, cac) new_esEs35(yvy40001, yvy30001, app(ty_Ratio, edb)) -> new_esEs26(yvy40001, yvy30001, edb) new_lt22(yvy152, yvy155, app(ty_Maybe, bb)) -> new_lt4(yvy152, yvy155, bb) new_esEs25(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_ltEs6(True, True) -> True new_ltEs18(yvy96, yvy97, ty_Double) -> new_ltEs16(yvy96, yvy97) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs11(yvy89, yvy90, bef) -> new_fsEs(new_compare0(yvy89, yvy90, bef)) new_compare28(LT, GT) -> LT new_compare12(yvy233, yvy234, yvy235, yvy236, True, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) new_compare30(Right(yvy4000), Right(yvy3000), cad, cae) -> new_compare211(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, cae), cad, cae) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_lt14(yvy152, yvy155) -> new_esEs12(new_compare19(yvy152, yvy155), LT) new_ltEs24(yvy89, yvy90, ty_@0) -> new_ltEs4(yvy89, yvy90) new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_lt16(yvy152, yvy155, fah, fba, fbb) new_esEs38(yvy153, yvy156, ty_Integer) -> new_esEs28(yvy153, yvy156) new_ltEs14(EQ, LT) -> False new_ltEs21(yvy103, yvy104, ty_Int) -> new_ltEs7(yvy103, yvy104) new_ltEs20(yvy891, yvy901, app(app(app(ty_@3, cha), chb), chc)) -> new_ltEs12(yvy891, yvy901, cha, chb, chc) new_compare110(yvy205, yvy206, True, ebf, ebg) -> LT new_esEs16(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_[], ehd)) -> new_esEs17(yvy165, yvy167, ehd) new_esEs14(yvy40002, yvy30002, app(app(ty_@2, cg), da)) -> new_esEs19(yvy40002, yvy30002, cg, da) new_lt23(yvy153, yvy156, ty_Char) -> new_lt18(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Char) -> new_compare29(yvy400, yvy300) new_ltEs22(yvy166, yvy168, ty_Char) -> new_ltEs15(yvy166, yvy168) new_esEs14(yvy40002, yvy30002, ty_Char) -> new_esEs21(yvy40002, yvy30002) new_esEs38(yvy153, yvy156, ty_@0) -> new_esEs27(yvy153, yvy156) new_esEs26(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), bee) -> new_asAs(new_esEs30(yvy40000, yvy30000, bee), new_esEs29(yvy40001, yvy30001, bee)) new_esEs28(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Maybe, efe)) -> new_esEs23(yvy40000, yvy30000, efe) new_esEs8(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs7(yvy4000, yvy3000, app(app(ty_@2, dga), dgb)) -> new_esEs19(yvy4000, yvy3000, dga, dgb) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, bfd), bfe)) -> new_esEs19(yvy40000, yvy30000, bfd, bfe) new_lt21(yvy165, yvy167, ty_@0) -> new_lt13(yvy165, yvy167) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Maybe, bba)) -> new_esEs23(yvy40000, yvy30000, bba) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Bool) -> new_ltEs6(yvy96, yvy97) new_esEs33(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_ltEs24(yvy89, yvy90, ty_Bool) -> new_ltEs6(yvy89, yvy90) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_Either, efc), efd)) -> new_esEs22(yvy40000, yvy30000, efc, efd) new_esEs33(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_esEs22(yvy890, yvy900, cef, ceg) new_esEs35(yvy40001, yvy30001, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_esEs13(yvy40001, yvy30001, ecb, ecc, ecd) new_esEs7(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(yvy892, yvy902, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs12(yvy892, yvy902, cbf, cbg, cbh) new_esEs33(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, app(ty_[], fcf)) -> new_lt6(yvy153, yvy156, fcf) new_ltEs12(@3(yvy890, yvy891, yvy892), @3(yvy900, yvy901, yvy902), cba, cbb, cbc) -> new_pePe(new_lt12(yvy890, yvy900, cba), new_asAs(new_esEs33(yvy890, yvy900, cba), new_pePe(new_lt11(yvy891, yvy901, cbb), new_asAs(new_esEs32(yvy891, yvy901, cbb), new_ltEs19(yvy892, yvy902, cbc))))) new_esEs34(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs13(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bh, ca, cb) -> new_asAs(new_esEs16(yvy40000, yvy30000, bh), new_asAs(new_esEs15(yvy40001, yvy30001, ca), new_esEs14(yvy40002, yvy30002, cb))) new_compare13(yvy233, yvy234, yvy235, yvy236, False, gc, gd) -> GT new_ltEs20(yvy891, yvy901, app(ty_Maybe, chd)) -> new_ltEs13(yvy891, yvy901, chd) new_pePe(False, yvy305) -> yvy305 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Double) -> new_ltEs16(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(ty_[], eh)) -> new_esEs17(yvy40000, yvy30000, eh) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_esEs7(yvy4000, yvy3000, app(app(ty_Either, dgc), dgd)) -> new_esEs22(yvy4000, yvy3000, dgc, dgd) new_compare25(yvy400, yvy300, ty_@0) -> new_compare9(yvy400, yvy300) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_[], cfd)) -> new_ltEs11(yvy890, yvy900, cfd) new_esEs39(yvy152, yvy155, app(ty_[], bed)) -> new_esEs17(yvy152, yvy155, bed) new_esEs16(yvy40000, yvy30000, app(ty_Maybe, ga)) -> new_esEs23(yvy40000, yvy30000, ga) new_esEs38(yvy153, yvy156, ty_Double) -> new_esEs20(yvy153, yvy156) new_esEs7(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, ty_@0) -> new_esEs27(yvy40002, yvy30002) new_ltEs8(yvy89, yvy90) -> new_fsEs(new_compare15(yvy89, yvy90)) new_ltEs13(Just(yvy890), Just(yvy900), ty_Char) -> new_ltEs15(yvy890, yvy900) new_esEs37(yvy165, yvy167, ty_@0) -> new_esEs27(yvy165, yvy167) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_[], bch)) -> new_ltEs11(yvy890, yvy900, bch) new_ltEs13(Just(yvy890), Just(yvy900), ty_Integer) -> new_ltEs8(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs15(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4002, yvy3002, ty_Int) -> new_esEs25(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(ty_Ratio, bcg)) -> new_ltEs9(yvy890, yvy900, bcg) new_lt12(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_lt12(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_lt16(yvy890, yvy900, ceb, cec, ced) new_esEs39(yvy152, yvy155, app(ty_Maybe, bb)) -> new_esEs23(yvy152, yvy155, bb) new_esEs4(yvy4002, yvy3002, ty_Char) -> new_esEs21(yvy4002, yvy3002) new_esEs36(yvy40000, yvy30000, app(ty_Ratio, eed)) -> new_esEs26(yvy40000, yvy30000, eed) new_lt23(yvy153, yvy156, ty_Bool) -> new_lt14(yvy153, yvy156) new_esEs32(yvy891, yvy901, ty_Bool) -> new_esEs18(yvy891, yvy901) new_esEs17([], [], beg) -> True new_ltEs13(Just(yvy890), Just(yvy900), app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs12(yvy890, yvy900, cfe, cff, cfg) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Double) -> new_ltEs16(yvy892, yvy902) new_esEs38(yvy153, yvy156, ty_Ordering) -> new_esEs12(yvy153, yvy156) new_esEs21(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs32(yvy891, yvy901, app(app(ty_Either, cdd), cde)) -> new_esEs22(yvy891, yvy901, cdd, cde) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy153, yvy156, ty_Int) -> new_esEs25(yvy153, yvy156) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, eag), eah)) -> new_esEs22(yvy4001, yvy3001, eag, eah) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, ty_Ordering) -> new_ltEs14(yvy892, yvy902) new_lt12(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy96, yvy97, ty_Float) -> new_ltEs10(yvy96, yvy97) new_lt13(yvy152, yvy155) -> new_esEs12(new_compare9(yvy152, yvy155), LT) new_compare26(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_Either, hd), he), gf) -> new_esEs22(yvy40000, yvy30000, hd, he) new_esEs36(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) new_ltEs14(EQ, GT) -> True new_ltEs18(yvy96, yvy97, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs12(yvy96, yvy97, bgf, bgg, bgh) new_ltEs14(GT, EQ) -> False new_ltEs13(Just(yvy890), Just(yvy900), app(app(ty_Either, cga), cgb)) -> new_ltEs5(yvy890, yvy900, cga, cgb) new_compare8(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), caf, cag) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs11(yvy4000, yvy3000, caf), new_esEs10(yvy4001, yvy3001, cag)), caf, cag) new_ltEs6(False, False) -> True new_ltEs23(yvy154, yvy157, app(ty_Ratio, fbc)) -> new_ltEs9(yvy154, yvy157, fbc) new_lt23(yvy153, yvy156, app(ty_Ratio, fce)) -> new_lt10(yvy153, yvy156, fce) new_ltEs5(Left(yvy890), Left(yvy900), ty_Int, bbc) -> new_ltEs7(yvy890, yvy900) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_ltEs20(yvy891, yvy901, ty_Double) -> new_ltEs16(yvy891, yvy901) new_esEs34(yvy890, yvy900, ty_Ordering) -> new_esEs12(yvy890, yvy900) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_ltEs13(Just(yvy890), Just(yvy900), ty_Bool) -> new_ltEs6(yvy890, yvy900) new_esEs36(yvy40000, yvy30000, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs13(yvy40000, yvy30000, edd, ede, edf) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_Ratio, dhh)) -> new_esEs26(yvy4002, yvy3002, dhh) new_esEs27(@0, @0) -> True new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_compare19(False, False) -> EQ new_esEs20(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_ltEs14(LT, GT) -> True new_ltEs21(yvy103, yvy104, ty_Char) -> new_ltEs15(yvy103, yvy104) new_ltEs14(GT, GT) -> True new_esEs32(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_esEs23(yvy891, yvy901, cdc) new_lt11(yvy891, yvy901, ty_@0) -> new_lt13(yvy891, yvy901) new_compare212(yvy89, yvy90, True, fgc) -> EQ new_ltEs22(yvy166, yvy168, app(app(ty_@2, eha), ehb)) -> new_ltEs17(yvy166, yvy168, eha, ehb) new_esEs38(yvy153, yvy156, ty_Char) -> new_esEs21(yvy153, yvy156) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_compare25(yvy400, yvy300, ty_Bool) -> new_compare19(yvy400, yvy300) new_lt21(yvy165, yvy167, ty_Bool) -> new_lt14(yvy165, yvy167) new_lt20(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eba)) -> new_esEs23(yvy4001, yvy3001, eba) new_compare25(yvy400, yvy300, app(app(app(ty_@3, bhh), caa), cab)) -> new_compare27(yvy400, yvy300, bhh, caa, cab) new_esEs4(yvy4002, yvy3002, ty_Double) -> new_esEs20(yvy4002, yvy3002) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs13(Just(yvy890), Just(yvy900), ty_@0) -> new_ltEs4(yvy890, yvy900) new_lt12(yvy890, yvy900, ty_Bool) -> new_lt14(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs13(yvy40000, yvy30000, fa, fb, fc) new_lt23(yvy153, yvy156, ty_Ordering) -> new_lt17(yvy153, yvy156) new_compare25(yvy400, yvy300, ty_Ordering) -> new_compare28(yvy400, yvy300) new_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) new_esEs39(yvy152, yvy155, app(app(app(ty_@3, fah), fba), fbb)) -> new_esEs13(yvy152, yvy155, fah, fba, fbb) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs23(yvy154, yvy157, ty_Int) -> new_ltEs7(yvy154, yvy157) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dda), ddb)) -> new_esEs19(yvy4000, yvy3000, dda, ddb) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs13(yvy40000, yvy30000, eef, eeg, eeh) new_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_ltEs18(yvy96, yvy97, app(ty_Maybe, bha)) -> new_ltEs13(yvy96, yvy97, bha) new_ltEs22(yvy166, yvy168, ty_Double) -> new_ltEs16(yvy166, yvy168) new_esEs35(yvy40001, yvy30001, app(app(ty_@2, ece), ecf)) -> new_esEs19(yvy40001, yvy30001, ece, ecf) new_primPlusNat1(Zero, yvy400100) -> Succ(yvy400100) new_ltEs6(True, False) -> False new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_lt23(yvy153, yvy156, ty_Integer) -> new_lt15(yvy153, yvy156) new_ltEs23(yvy154, yvy157, ty_Double) -> new_ltEs16(yvy154, yvy157) new_ltEs23(yvy154, yvy157, app(app(ty_@2, fcc), fcd)) -> new_ltEs17(yvy154, yvy157, fcc, fcd) new_esEs38(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs13(yvy153, yvy156, fcg, fch, fda) new_lt5(yvy152, yvy155, bf, bg) -> new_esEs12(new_compare8(yvy152, yvy155, bf, bg), LT) new_esEs15(yvy40001, yvy30001, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs13(yvy40001, yvy30001, dg, dh, ea) new_esEs36(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Maybe, cee)) -> new_lt4(yvy890, yvy900, cee) new_esEs24(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs25(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_esEs10(yvy4001, yvy3001, app(app(ty_@2, dbg), dbh)) -> new_esEs19(yvy4001, yvy3001, dbg, dbh) new_esEs14(yvy40002, yvy30002, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs13(yvy40002, yvy30002, cd, ce, cf) new_lt21(yvy165, yvy167, ty_Float) -> new_lt7(yvy165, yvy167) new_esEs7(yvy4000, yvy3000, app(ty_Maybe, dge)) -> new_esEs23(yvy4000, yvy3000, dge) new_esEs33(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_esEs19(yvy890, yvy900, ceh, cfa) new_ltEs21(yvy103, yvy104, ty_Double) -> new_ltEs16(yvy103, yvy104) new_lt23(yvy153, yvy156, ty_@0) -> new_lt13(yvy153, yvy156) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffe), fff)) -> new_esEs19(yvy4000, yvy3000, ffe, fff) new_ltEs24(yvy89, yvy90, app(app(ty_@2, cge), cgf)) -> new_ltEs17(yvy89, yvy90, cge, cgf) new_esEs37(yvy165, yvy167, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs13(yvy165, yvy167, ehe, ehf, ehg) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(ty_Ratio, bbb)) -> new_esEs26(yvy40000, yvy30000, bbb) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Int, gf) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy891, yvy901, ty_Float) -> new_ltEs10(yvy891, yvy901) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs16(yvy40000, yvy30000, app(ty_Ratio, gb)) -> new_esEs26(yvy40000, yvy30000, gb) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_ltEs18(yvy96, yvy97, ty_Char) -> new_ltEs15(yvy96, yvy97) new_esEs17(:(yvy40000, yvy40001), :(yvy30000, yvy30001), beg) -> new_asAs(new_esEs31(yvy40000, yvy30000, beg), new_esEs17(yvy40001, yvy30001, beg)) new_lt20(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_compare210(yvy165, yvy166, yvy167, yvy168, True, efg, efh) -> EQ new_esEs22(Left(yvy40000), Left(yvy30000), ty_Char, gf) -> new_esEs21(yvy40000, yvy30000) new_fsEs(yvy306) -> new_not(new_esEs12(yvy306, GT)) new_lt22(yvy152, yvy155, ty_Bool) -> new_lt14(yvy152, yvy155) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, ebe)) -> new_esEs23(yvy4000, yvy3000, ebe) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_ltEs19(yvy892, yvy902, ty_Float) -> new_ltEs10(yvy892, yvy902) new_ltEs19(yvy892, yvy902, ty_Char) -> new_ltEs15(yvy892, yvy902) new_ltEs9(yvy89, yvy90, ebh) -> new_fsEs(new_compare26(yvy89, yvy90, ebh)) new_esEs35(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_compare211(yvy103, yvy104, False, ddg, ddh) -> new_compare110(yvy103, yvy104, new_ltEs21(yvy103, yvy104, ddh), ddg, ddh) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs20(yvy4001, yvy3001) new_esEs15(yvy40001, yvy30001, app(ty_Ratio, eg)) -> new_esEs26(yvy40001, yvy30001, eg) new_compare25(yvy400, yvy300, app(app(ty_@2, caf), cag)) -> new_compare8(yvy400, yvy300, caf, cag) new_esEs35(yvy40001, yvy30001, ty_Float) -> new_esEs24(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, ty_Integer) -> new_ltEs8(yvy96, yvy97) new_lt11(yvy891, yvy901, ty_Bool) -> new_lt14(yvy891, yvy901) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs38(yvy153, yvy156, app(ty_Ratio, fce)) -> new_esEs26(yvy153, yvy156, fce) new_esEs5(yvy4001, yvy3001, app(ty_[], eaa)) -> new_esEs17(yvy4001, yvy3001, eaa) new_esEs23(Just(yvy40000), Just(yvy30000), app(ty_Ratio, eff)) -> new_esEs26(yvy40000, yvy30000, eff) new_ltEs24(yvy89, yvy90, app(ty_Ratio, ebh)) -> new_ltEs9(yvy89, yvy90, ebh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, hh), gf)) -> new_esEs22(yvy4000, yvy3000, hh, gf) new_ltEs13(Just(yvy890), Just(yvy900), ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs34(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_esEs19(yvy890, yvy900, dba, dbb) new_esEs36(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_lt12(yvy890, yvy900, ty_@0) -> new_lt13(yvy890, yvy900) new_compare25(yvy400, yvy300, app(app(ty_Either, cad), cae)) -> new_compare30(yvy400, yvy300, cad, cae) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs13(yvy40000, yvy30000, bab, bac, bad) new_esEs35(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_esEs16(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_ltEs24(yvy89, yvy90, ty_Int) -> new_ltEs7(yvy89, yvy90) new_ltEs14(GT, LT) -> False new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(app(ty_Either, ccb), ccc)) -> new_ltEs5(yvy892, yvy902, ccb, ccc) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Ordering, gf) -> new_esEs12(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_esEs26(yvy165, yvy167, ehc) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_esEs16(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, bfh)) -> new_esEs23(yvy40000, yvy30000, bfh) new_esEs39(yvy152, yvy155, ty_Int) -> new_esEs25(yvy152, yvy155) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_Either, bag), bah)) -> new_esEs22(yvy40000, yvy30000, bag, bah) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs4(yvy4002, yvy3002, app(ty_[], dgg)) -> new_esEs17(yvy4002, yvy3002, dgg) new_esEs4(yvy4002, yvy3002, app(ty_Maybe, dhg)) -> new_esEs23(yvy4002, yvy3002, dhg) new_compare210(yvy165, yvy166, yvy167, yvy168, False, efg, efh) -> new_compare12(yvy165, yvy166, yvy167, yvy168, new_lt21(yvy165, yvy167, efg), new_asAs(new_esEs37(yvy165, yvy167, efg), new_ltEs22(yvy166, yvy168, efh)), efg, efh) new_compare25(yvy400, yvy300, ty_Float) -> new_compare17(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, app(ty_[], beh)) -> new_esEs17(yvy40000, yvy30000, beh) new_ltEs21(yvy103, yvy104, app(ty_Maybe, def)) -> new_ltEs13(yvy103, yvy104, def) new_esEs33(yvy890, yvy900, ty_Float) -> new_esEs24(yvy890, yvy900) new_esEs16(yvy40000, yvy30000, app(app(ty_@2, fd), ff)) -> new_esEs19(yvy40000, yvy30000, fd, ff) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt22(yvy152, yvy155, ty_Ordering) -> new_lt17(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_ltEs22(yvy166, yvy168, ty_@0) -> new_ltEs4(yvy166, yvy168) new_ltEs13(Just(yvy890), Just(yvy900), ty_Int) -> new_ltEs7(yvy890, yvy900) new_esEs15(yvy40001, yvy30001, app(ty_[], df)) -> new_esEs17(yvy40001, yvy30001, df) new_esEs33(yvy890, yvy900, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs13(yvy890, yvy900, ceb, cec, ced) new_ltEs5(Left(yvy890), Left(yvy900), ty_Float, bbc) -> new_ltEs10(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs37(yvy165, yvy167, ty_Double) -> new_esEs20(yvy165, yvy167) new_ltEs22(yvy166, yvy168, app(ty_Ratio, ega)) -> new_ltEs9(yvy166, yvy168, ega) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_lt10(yvy152, yvy155, cah) -> new_esEs12(new_compare26(yvy152, yvy155, cah), LT) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs22(yvy166, yvy168, ty_Bool) -> new_ltEs6(yvy166, yvy168) new_compare30(Left(yvy4000), Right(yvy3000), cad, cae) -> LT new_esEs8(yvy4000, yvy3000, app(app(ty_Either, fee), fef)) -> new_esEs22(yvy4000, yvy3000, fee, fef) new_esEs35(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs13(yvy4000, yvy3000, bh, ca, cb) new_esEs14(yvy40002, yvy30002, ty_Int) -> new_esEs25(yvy40002, yvy30002) new_esEs16(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_esEs8(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, app(app(ty_Either, ecg), ech)) -> new_esEs22(yvy40001, yvy30001, ecg, ech) new_esEs36(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_esEs15(yvy40001, yvy30001, app(ty_Maybe, ef)) -> new_esEs23(yvy40001, yvy30001, ef) new_esEs8(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_compare25(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_lt11(yvy891, yvy901, ty_Int) -> new_lt9(yvy891, yvy901) new_esEs35(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_ltEs20(yvy891, yvy901, ty_Char) -> new_ltEs15(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, bff), bfg)) -> new_esEs22(yvy40000, yvy30000, bff, bfg) new_esEs12(GT, GT) -> True new_ltEs19(yvy892, yvy902, ty_Integer) -> new_ltEs8(yvy892, yvy902) new_ltEs22(yvy166, yvy168, app(ty_[], egb)) -> new_ltEs11(yvy166, yvy168, egb) new_esEs32(yvy891, yvy901, app(app(ty_@2, cdf), cdg)) -> new_esEs19(yvy891, yvy901, cdf, cdg) new_compare0([], :(yvy3000, yvy3001), bhg) -> LT new_esEs4(yvy4002, yvy3002, app(app(ty_Either, dhe), dhf)) -> new_esEs22(yvy4002, yvy3002, dhe, dhf) new_asAs(True, yvy184) -> yvy184 new_ltEs5(Right(yvy890), Left(yvy900), bcf, bbc) -> False new_esEs4(yvy4002, yvy3002, ty_Bool) -> new_esEs18(yvy4002, yvy3002) new_lt22(yvy152, yvy155, ty_@0) -> new_lt13(yvy152, yvy155) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, eae), eaf)) -> new_esEs19(yvy4001, yvy3001, eae, eaf) new_lt12(yvy890, yvy900, ty_Ordering) -> new_lt17(yvy890, yvy900) new_compare25(yvy400, yvy300, app(ty_[], bhg)) -> new_compare0(yvy400, yvy300, bhg) new_esEs10(yvy4001, yvy3001, app(ty_[], dbc)) -> new_esEs17(yvy4001, yvy3001, dbc) new_ltEs16(yvy89, yvy90) -> new_fsEs(new_compare18(yvy89, yvy90)) new_ltEs22(yvy166, yvy168, ty_Ordering) -> new_ltEs14(yvy166, yvy168) new_ltEs21(yvy103, yvy104, ty_Float) -> new_ltEs10(yvy103, yvy104) new_esEs37(yvy165, yvy167, ty_Float) -> new_esEs24(yvy165, yvy167) new_esEs16(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_esEs4(yvy4002, yvy3002, ty_@0) -> new_esEs27(yvy4002, yvy3002) new_esEs22(Left(yvy40000), Left(yvy30000), ty_Bool, gf) -> new_esEs18(yvy40000, yvy30000) new_lt12(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_lt10(yvy890, yvy900, cdh) new_ltEs20(yvy891, yvy901, app(app(ty_Either, che), chf)) -> new_ltEs5(yvy891, yvy901, che, chf) new_esEs29(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs18(False, False) -> True new_ltEs20(yvy891, yvy901, ty_Integer) -> new_ltEs8(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_compare24(yvy96, yvy97, True, bgb, bgc) -> EQ new_esEs14(yvy40002, yvy30002, app(app(ty_Either, db), dc)) -> new_esEs22(yvy40002, yvy30002, db, dc) new_ltEs5(Left(yvy890), Left(yvy900), ty_Integer, bbc) -> new_ltEs8(yvy890, yvy900) new_lt23(yvy153, yvy156, app(app(app(ty_@3, fcg), fch), fda)) -> new_lt16(yvy153, yvy156, fcg, fch, fda) new_esEs14(yvy40002, yvy30002, ty_Bool) -> new_esEs18(yvy40002, yvy30002) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_[], ffa)) -> new_esEs17(yvy4000, yvy3000, ffa) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_Either, bde), bdf)) -> new_ltEs5(yvy890, yvy900, bde, bdf) new_lt11(yvy891, yvy901, ty_Double) -> new_lt8(yvy891, yvy901) new_primCompAux00(yvy56, EQ) -> yvy56 new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_@0) -> new_ltEs4(yvy890, yvy900) new_esEs12(EQ, EQ) -> True new_compare0([], [], bhg) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs36(yvy40000, yvy30000, app(ty_[], edc)) -> new_esEs17(yvy40000, yvy30000, edc) new_esEs32(yvy891, yvy901, ty_@0) -> new_esEs27(yvy891, yvy901) new_compare30(Right(yvy4000), Left(yvy3000), cad, cae) -> GT new_esEs8(yvy4000, yvy3000, app(ty_[], fdg)) -> new_esEs17(yvy4000, yvy3000, fdg) new_ltEs5(Left(yvy890), Left(yvy900), app(app(ty_@2, bcd), bce), bbc) -> new_ltEs17(yvy890, yvy900, bcd, bce) new_primMulNat0(Zero, Zero) -> Zero new_esEs35(yvy40001, yvy30001, ty_Int) -> new_esEs25(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, bee)) -> new_esEs26(yvy4000, yvy3000, bee) new_lt21(yvy165, yvy167, ty_Double) -> new_lt8(yvy165, yvy167) new_compare28(EQ, LT) -> GT new_ltEs13(Nothing, Nothing, cfb) -> True new_ltEs13(Just(yvy890), Nothing, cfb) -> False new_esEs15(yvy40001, yvy30001, ty_Bool) -> new_esEs18(yvy40001, yvy30001) new_esEs8(yvy4000, yvy3000, app(ty_Maybe, feg)) -> new_esEs23(yvy4000, yvy3000, feg) new_lt23(yvy153, yvy156, ty_Float) -> new_lt7(yvy153, yvy156) new_esEs15(yvy40001, yvy30001, app(app(ty_Either, ed), ee)) -> new_esEs22(yvy40001, yvy30001, ed, ee) new_compare9(@0, @0) -> EQ new_esEs23(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, ty_Ordering) -> new_ltEs14(yvy103, yvy104) new_esEs16(yvy40000, yvy30000, ty_Float) -> new_esEs24(yvy40000, yvy30000) new_esEs36(yvy40000, yvy30000, app(app(ty_@2, edg), edh)) -> new_esEs19(yvy40000, yvy30000, edg, edh) new_ltEs19(yvy892, yvy902, app(ty_Maybe, cca)) -> new_ltEs13(yvy892, yvy902, cca) new_esEs4(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(ty_@2, bdg), bdh)) -> new_ltEs17(yvy890, yvy900, bdg, bdh) new_esEs7(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_lt4(yvy165, yvy167, ehh) new_lt22(yvy152, yvy155, ty_Double) -> new_lt8(yvy152, yvy155) new_lt11(yvy891, yvy901, ty_Char) -> new_lt18(yvy891, yvy901) new_lt11(yvy891, yvy901, ty_Ordering) -> new_lt17(yvy891, yvy901) new_compare212(yvy89, yvy90, False, fgc) -> new_compare16(yvy89, yvy90, new_ltEs24(yvy89, yvy90, fgc), fgc) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, ebc), ebd)) -> new_esEs19(yvy4000, yvy3000, ebc, ebd) new_compare17(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ebb)) -> new_esEs26(yvy4001, yvy3001, ebb) new_esEs37(yvy165, yvy167, ty_Integer) -> new_esEs28(yvy165, yvy167) new_lt21(yvy165, yvy167, ty_Int) -> new_lt9(yvy165, yvy167) new_esEs39(yvy152, yvy155, ty_Bool) -> new_esEs18(yvy152, yvy155) new_lt11(yvy891, yvy901, app(ty_Maybe, cdc)) -> new_lt4(yvy891, yvy901, cdc) new_esEs33(yvy890, yvy900, ty_Integer) -> new_esEs28(yvy890, yvy900) new_esEs33(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dde)) -> new_esEs23(yvy4000, yvy3000, dde) new_esEs39(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_esEs22(yvy152, yvy155, dfc, dfd) new_ltEs6(False, True) -> True new_esEs37(yvy165, yvy167, app(app(ty_@2, fac), fad)) -> new_esEs19(yvy165, yvy167, fac, fad) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ffg), ffh)) -> new_esEs22(yvy4000, yvy3000, ffg, ffh) new_esEs32(yvy891, yvy901, ty_Char) -> new_esEs21(yvy891, yvy901) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy40002, yvy30002, app(ty_[], cc)) -> new_esEs17(yvy40002, yvy30002, cc) new_compare25(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare28(EQ, EQ) -> EQ new_lt11(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_lt10(yvy891, yvy901, ccf) new_ltEs24(yvy89, yvy90, app(app(ty_Either, bcf), bbc)) -> new_ltEs5(yvy89, yvy90, bcf, bbc) new_esEs39(yvy152, yvy155, ty_Ordering) -> new_esEs12(yvy152, yvy155) new_esEs8(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_ltEs21(yvy103, yvy104, app(app(ty_@2, dfa), dfb)) -> new_ltEs17(yvy103, yvy104, dfa, dfb) new_esEs37(yvy165, yvy167, ty_Char) -> new_esEs21(yvy165, yvy167) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, eab), eac), ead)) -> new_esEs13(yvy4001, yvy3001, eab, eac, ead) new_esEs32(yvy891, yvy901, ty_Double) -> new_esEs20(yvy891, yvy901) new_esEs10(yvy4001, yvy3001, app(ty_Maybe, dcc)) -> new_esEs23(yvy4001, yvy3001, dcc) new_lt22(yvy152, yvy155, app(ty_Ratio, cah)) -> new_lt10(yvy152, yvy155, cah) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_ltEs23(yvy154, yvy157, app(ty_[], fbd)) -> new_ltEs11(yvy154, yvy157, fbd) new_ltEs21(yvy103, yvy104, ty_Integer) -> new_ltEs8(yvy103, yvy104) new_esEs10(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_compare7(Just(yvy4000), Nothing, cac) -> GT new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs10(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, ty_Integer) -> new_esEs28(yvy891, yvy901) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs25(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Int) -> new_lt9(yvy152, yvy155) new_esEs15(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) new_ltEs18(yvy96, yvy97, app(app(ty_Either, bhb), bhc)) -> new_ltEs5(yvy96, yvy97, bhb, bhc) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bhh, caa, cab) -> new_compare213(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bhh), new_asAs(new_esEs5(yvy4001, yvy3001, caa), new_esEs4(yvy4002, yvy3002, cab))), bhh, caa, cab) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs15(yvy40001, yvy30001, ty_@0) -> new_esEs27(yvy40001, yvy30001) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs32(yvy891, yvy901, app(ty_[], ccg)) -> new_esEs17(yvy891, yvy901, ccg) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fga)) -> new_esEs23(yvy4000, yvy3000, fga) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Ordering) -> new_ltEs14(yvy890, yvy900) new_esEs10(yvy4001, yvy3001, ty_Bool) -> new_esEs18(yvy4001, yvy3001) new_compare211(yvy103, yvy104, True, ddg, ddh) -> EQ new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs10(yvy4001, yvy3001, app(app(ty_Either, dca), dcb)) -> new_esEs22(yvy4001, yvy3001, dca, dcb) new_esEs38(yvy153, yvy156, ty_Float) -> new_esEs24(yvy153, yvy156) new_ltEs5(Right(yvy890), Right(yvy900), bcf, app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs12(yvy890, yvy900, bda, bdb, bdc) new_esEs7(yvy4000, yvy3000, ty_Float) -> new_esEs24(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), app(ty_[], bbe), bbc) -> new_ltEs11(yvy890, yvy900, bbe) new_lt21(yvy165, yvy167, ty_Ordering) -> new_lt17(yvy165, yvy167) new_lt4(yvy152, yvy155, bb) -> new_esEs12(new_compare7(yvy152, yvy155, bb), LT) new_esEs34(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs13(yvy890, yvy900, dac, dad, dae) new_ltEs24(yvy89, yvy90, ty_Float) -> new_ltEs10(yvy89, yvy90) new_esEs7(yvy4000, yvy3000, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs13(yvy4000, yvy3000, dff, dfg, dfh) new_esEs22(Left(yvy40000), Left(yvy30000), ty_@0, gf) -> new_esEs27(yvy40000, yvy30000) new_compare19(False, True) -> LT new_ltEs21(yvy103, yvy104, ty_Bool) -> new_ltEs6(yvy103, yvy104) new_esEs23(Just(yvy40000), Just(yvy30000), app(app(ty_@2, efa), efb)) -> new_esEs19(yvy40000, yvy30000, efa, efb) new_compare7(Nothing, Nothing, cac) -> EQ new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Int) -> new_ltEs7(yvy890, yvy900) new_ltEs21(yvy103, yvy104, app(ty_Ratio, dea)) -> new_ltEs9(yvy103, yvy104, dea) new_compare10(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, False, yvy225, bc, bd, be) -> new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, yvy225, bc, bd, be) new_compare18(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare18(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs34(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_esEs22(yvy890, yvy900, dag, dah) new_lt7(yvy152, yvy155) -> new_esEs12(new_compare17(yvy152, yvy155), LT) new_compare13(yvy233, yvy234, yvy235, yvy236, True, gc, gd) -> LT new_lt6(yvy152, yvy155, bed) -> new_esEs12(new_compare0(yvy152, yvy155, bed), LT) new_esEs34(yvy890, yvy900, ty_Bool) -> new_esEs18(yvy890, yvy900) new_ltEs7(yvy89, yvy90) -> new_fsEs(new_compare6(yvy89, yvy90)) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs13(yvy4000, yvy3000, dcf, dcg, dch) new_esEs11(yvy4000, yvy3000, app(app(ty_Either, ddc), ddd)) -> new_esEs22(yvy4000, yvy3000, ddc, ddd) new_esEs23(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_compare17(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_lt20(yvy890, yvy900, app(app(app(ty_@3, dac), dad), dae)) -> new_lt16(yvy890, yvy900, dac, dad, dae) new_not(False) -> True new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs18(yvy4000, yvy3000) new_ltEs5(Left(yvy890), Left(yvy900), ty_Double, bbc) -> new_ltEs16(yvy890, yvy900) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs26(yvy4000, yvy3000, fgb) new_ltEs20(yvy891, yvy901, app(app(ty_@2, chg), chh)) -> new_ltEs17(yvy891, yvy901, chg, chh) new_compare28(GT, EQ) -> GT new_esEs22(Left(yvy40000), Right(yvy30000), hh, gf) -> False new_esEs22(Right(yvy40000), Left(yvy30000), hh, gf) -> False new_ltEs5(Left(yvy890), Left(yvy900), app(ty_Ratio, bbd), bbc) -> new_ltEs9(yvy890, yvy900, bbd) new_compare0(:(yvy4000, yvy4001), [], bhg) -> GT new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs32(yvy891, yvy901, ty_Float) -> new_esEs24(yvy891, yvy901) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_lt20(yvy890, yvy900, app(app(ty_@2, dba), dbb)) -> new_lt5(yvy890, yvy900, dba, dbb) new_ltEs5(Left(yvy890), Left(yvy900), ty_Ordering, bbc) -> new_ltEs14(yvy890, yvy900) new_lt20(yvy890, yvy900, app(app(ty_Either, dag), dah)) -> new_lt19(yvy890, yvy900, dag, dah) new_ltEs21(yvy103, yvy104, ty_@0) -> new_ltEs4(yvy103, yvy104) new_lt12(yvy890, yvy900, ty_Float) -> new_lt7(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs28(yvy4000, yvy3000) new_esEs39(yvy152, yvy155, ty_@0) -> new_esEs27(yvy152, yvy155) new_esEs14(yvy40002, yvy30002, app(ty_Maybe, dd)) -> new_esEs23(yvy40002, yvy30002, dd) new_esEs36(yvy40000, yvy30000, ty_Double) -> new_esEs20(yvy40000, yvy30000) new_lt22(yvy152, yvy155, ty_Char) -> new_lt18(yvy152, yvy155) new_lt20(yvy890, yvy900, ty_Integer) -> new_lt15(yvy890, yvy900) new_ltEs19(yvy892, yvy902, app(app(ty_@2, ccd), cce)) -> new_ltEs17(yvy892, yvy902, ccd, cce) new_compare30(Left(yvy4000), Left(yvy3000), cad, cae) -> new_compare24(yvy4000, yvy3000, new_esEs8(yvy4000, yvy3000, cad), cad, cae) new_ltEs23(yvy154, yvy157, ty_Bool) -> new_ltEs6(yvy154, yvy157) new_lt21(yvy165, yvy167, app(ty_[], ehd)) -> new_lt6(yvy165, yvy167, ehd) new_compare28(GT, GT) -> EQ new_esEs36(yvy40000, yvy30000, ty_Char) -> new_esEs21(yvy40000, yvy30000) new_lt23(yvy153, yvy156, ty_Double) -> new_lt8(yvy153, yvy156) new_esEs16(yvy40000, yvy30000, ty_@0) -> new_esEs27(yvy40000, yvy30000) new_lt20(yvy890, yvy900, ty_Int) -> new_lt9(yvy890, yvy900) new_esEs37(yvy165, yvy167, app(ty_Maybe, ehh)) -> new_esEs23(yvy165, yvy167, ehh) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs13(yvy4000, yvy3000, ffb, ffc, ffd) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ddf)) -> new_esEs26(yvy4000, yvy3000, ddf) new_ltEs19(yvy892, yvy902, ty_Int) -> new_ltEs7(yvy892, yvy902) new_esEs22(Left(yvy40000), Left(yvy30000), app(ty_Ratio, hg), gf) -> new_esEs26(yvy40000, yvy30000, hg) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare25(yvy400, yvy300, h)) new_ltEs13(Just(yvy890), Just(yvy900), app(ty_Ratio, cfc)) -> new_ltEs9(yvy890, yvy900, cfc) new_esEs33(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_lt18(yvy152, yvy155) -> new_esEs12(new_compare29(yvy152, yvy155), LT) new_esEs38(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_esEs19(yvy153, yvy156, fde, fdf) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(yvy89, yvy90, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs12(yvy89, yvy90, cba, cbb, cbc) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs20(yvy4000, yvy3000) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bhg) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bhg), bhg) new_esEs7(yvy4000, yvy3000, app(ty_Ratio, dgf)) -> new_esEs26(yvy4000, yvy3000, dgf) new_ltEs15(yvy89, yvy90) -> new_fsEs(new_compare29(yvy89, yvy90)) new_esEs34(yvy890, yvy900, app(ty_Ratio, daa)) -> new_esEs26(yvy890, yvy900, daa) new_lt21(yvy165, yvy167, app(ty_Ratio, ehc)) -> new_lt10(yvy165, yvy167, ehc) new_ltEs14(LT, EQ) -> True new_ltEs23(yvy154, yvy157, ty_@0) -> new_ltEs4(yvy154, yvy157) new_lt12(yvy890, yvy900, app(app(ty_@2, ceh), cfa)) -> new_lt5(yvy890, yvy900, ceh, cfa) new_esEs10(yvy4001, yvy3001, ty_Char) -> new_esEs21(yvy4001, yvy3001) new_ltEs21(yvy103, yvy104, app(app(app(ty_@3, dec), ded), dee)) -> new_ltEs12(yvy103, yvy104, dec, ded, dee) new_lt12(yvy890, yvy900, app(app(ty_Either, cef), ceg)) -> new_lt19(yvy890, yvy900, cef, ceg) new_ltEs20(yvy891, yvy901, ty_Int) -> new_ltEs7(yvy891, yvy901) new_ltEs22(yvy166, yvy168, app(ty_Maybe, egf)) -> new_ltEs13(yvy166, yvy168, egf) new_esEs4(yvy4002, yvy3002, ty_Integer) -> new_esEs28(yvy4002, yvy3002) new_compare7(Just(yvy4000), Just(yvy3000), cac) -> new_compare212(yvy4000, yvy3000, new_esEs7(yvy4000, yvy3000, cac), cac) new_esEs15(yvy40001, yvy30001, app(app(ty_@2, eb), ec)) -> new_esEs19(yvy40001, yvy30001, eb, ec) new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs28(yvy40000, yvy30000) new_esEs35(yvy40001, yvy30001, app(ty_[], eca)) -> new_esEs17(yvy40001, yvy30001, eca) new_compare7(Nothing, Just(yvy3000), cac) -> LT new_esEs22(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, gg), gh), ha), gf) -> new_esEs13(yvy40000, yvy30000, gg, gh, ha) new_ltEs18(yvy96, yvy97, app(ty_Ratio, bgd)) -> new_ltEs9(yvy96, yvy97, bgd) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_compare213(yvy152, yvy153, yvy154, yvy155, yvy156, yvy157, True, fae, faf, fag) -> EQ new_ltEs23(yvy154, yvy157, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_ltEs12(yvy154, yvy157, fbe, fbf, fbg) new_ltEs24(yvy89, yvy90, ty_Integer) -> new_ltEs8(yvy89, yvy90) new_esEs8(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs34(yvy890, yvy900, ty_Char) -> new_esEs21(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs27(yvy4001, yvy3001) new_esEs32(yvy891, yvy901, app(ty_Ratio, ccf)) -> new_esEs26(yvy891, yvy901, ccf) new_ltEs21(yvy103, yvy104, app(app(ty_Either, deg), deh)) -> new_ltEs5(yvy103, yvy104, deg, deh) new_esEs33(yvy890, yvy900, app(ty_Ratio, cdh)) -> new_esEs26(yvy890, yvy900, cdh) new_compare12(yvy233, yvy234, yvy235, yvy236, False, yvy238, gc, gd) -> new_compare13(yvy233, yvy234, yvy235, yvy236, yvy238, gc, gd) new_compare28(GT, LT) -> GT new_lt20(yvy890, yvy900, app(ty_Maybe, daf)) -> new_lt4(yvy890, yvy900, daf) new_compare16(yvy189, yvy190, False, bec) -> GT new_compare24(yvy96, yvy97, False, bgb, bgc) -> new_compare14(yvy96, yvy97, new_ltEs18(yvy96, yvy97, bgb), bgb, bgc) new_ltEs22(yvy166, yvy168, app(app(ty_Either, egg), egh)) -> new_ltEs5(yvy166, yvy168, egg, egh) new_esEs22(Left(yvy40000), Left(yvy30000), app(app(ty_@2, hb), hc), gf) -> new_esEs19(yvy40000, yvy30000, hb, hc) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_ltEs23(yvy154, yvy157, ty_Integer) -> new_ltEs8(yvy154, yvy157) new_esEs35(yvy40001, yvy30001, app(ty_Maybe, eda)) -> new_esEs23(yvy40001, yvy30001, eda) new_lt23(yvy153, yvy156, app(app(ty_Either, fdc), fdd)) -> new_lt19(yvy153, yvy156, fdc, fdd) new_ltEs22(yvy166, yvy168, app(app(app(ty_@3, egc), egd), ege)) -> new_ltEs12(yvy166, yvy168, egc, egd, ege) new_esEs34(yvy890, yvy900, ty_Double) -> new_esEs20(yvy890, yvy900) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs22(Right(yvy40000), Right(yvy30000), hh, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt23(yvy153, yvy156, app(app(ty_@2, fde), fdf)) -> new_lt5(yvy153, yvy156, fde, fdf) new_esEs10(yvy4001, yvy3001, ty_Int) -> new_esEs25(yvy4001, yvy3001) new_esEs22(Right(yvy40000), Right(yvy30000), hh, app(app(ty_@2, bae), baf)) -> new_esEs19(yvy40000, yvy30000, bae, baf) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs19(yvy892, yvy902, app(ty_Ratio, cbd)) -> new_ltEs9(yvy892, yvy902, cbd) new_ltEs5(Right(yvy890), Right(yvy900), bcf, ty_Bool) -> new_ltEs6(yvy890, yvy900) new_ltEs18(yvy96, yvy97, app(app(ty_@2, bhd), bhe)) -> new_ltEs17(yvy96, yvy97, bhd, bhe) new_esEs34(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs27(yvy4000, yvy3000) new_esEs35(yvy40001, yvy30001, ty_Char) -> new_esEs21(yvy40001, yvy30001) new_esEs11(yvy4000, yvy3000, app(ty_[], dce)) -> new_esEs17(yvy4000, yvy3000, dce) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs21(yvy4000, yvy3000) new_lt20(yvy890, yvy900, ty_Char) -> new_lt18(yvy890, yvy900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy89, yvy90, ty_Char) -> new_ltEs15(yvy89, yvy90) new_ltEs24(yvy89, yvy90, app(ty_Maybe, cfb)) -> new_ltEs13(yvy89, yvy90, cfb) new_esEs34(yvy890, yvy900, app(ty_[], dab)) -> new_esEs17(yvy890, yvy900, dab) new_esEs8(yvy4000, yvy3000, app(ty_Ratio, feh)) -> new_esEs26(yvy4000, yvy3000, feh) new_compare110(yvy205, yvy206, False, ebf, ebg) -> GT new_esEs32(yvy891, yvy901, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs13(yvy891, yvy901, cch, cda, cdb) new_compare29(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_ltEs5(Left(yvy890), Left(yvy900), ty_Char, bbc) -> new_ltEs15(yvy890, yvy900) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs24(yvy4001, yvy3001) new_compare28(LT, EQ) -> LT new_lt12(yvy890, yvy900, ty_Double) -> new_lt8(yvy890, yvy900) new_lt20(yvy890, yvy900, app(ty_[], dab)) -> new_lt6(yvy890, yvy900, dab) new_esEs33(yvy890, yvy900, ty_Int) -> new_esEs25(yvy890, yvy900) new_compare14(yvy196, yvy197, False, bea, beb) -> GT new_lt21(yvy165, yvy167, ty_Char) -> new_lt18(yvy165, yvy167) new_compare11(yvy218, yvy219, yvy220, yvy221, yvy222, yvy223, True, bc, bd, be) -> LT new_esEs36(yvy40000, yvy30000, app(app(ty_Either, eea), eeb)) -> new_esEs22(yvy40000, yvy30000, eea, eeb) new_ltEs23(yvy154, yvy157, app(ty_Maybe, fbh)) -> new_ltEs13(yvy154, yvy157, fbh) new_asAs(False, yvy184) -> False new_esEs17(:(yvy40000, yvy40001), [], beg) -> False new_esEs17([], :(yvy30000, yvy30001), beg) -> False new_ltEs14(LT, LT) -> True new_esEs36(yvy40000, yvy30000, ty_Bool) -> new_esEs18(yvy40000, yvy30000) new_lt22(yvy152, yvy155, app(app(ty_@2, bf), bg)) -> new_lt5(yvy152, yvy155, bf, bg) new_esEs35(yvy40001, yvy30001, ty_Double) -> new_esEs20(yvy40001, yvy30001) new_lt22(yvy152, yvy155, app(app(ty_Either, dfc), dfd)) -> new_lt19(yvy152, yvy155, dfc, dfd) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs28(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs25(yvy4000, yvy3000) new_esEs10(yvy4001, yvy3001, app(ty_Ratio, dcd)) -> new_esEs26(yvy4001, yvy3001, dcd) new_ltEs21(yvy103, yvy104, app(ty_[], deb)) -> new_ltEs11(yvy103, yvy104, deb) new_ltEs13(Nothing, Just(yvy900), cfb) -> True new_esEs4(yvy4002, yvy3002, app(app(ty_@2, dhc), dhd)) -> new_esEs19(yvy4002, yvy3002, dhc, dhd) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs8(yvy4000, yvy3000, app(app(app(ty_@3, fdh), fea), feb)) -> new_esEs13(yvy4000, yvy3000, fdh, fea, feb) new_esEs36(yvy40000, yvy30000, app(ty_Maybe, eec)) -> new_esEs23(yvy40000, yvy30000, eec) new_ltEs23(yvy154, yvy157, ty_Ordering) -> new_ltEs14(yvy154, yvy157) new_ltEs18(yvy96, yvy97, ty_Int) -> new_ltEs7(yvy96, yvy97) new_esEs29(yvy40001, yvy30001, ty_Integer) -> new_esEs28(yvy40001, yvy30001) The set Q consists of the following terms: new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_compare26(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs12(EQ, EQ) new_compare13(x0, x1, x2, x3, False, x4, x5) new_esEs10(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(EQ, LT) new_compare28(LT, EQ) new_compare16(x0, x1, False, x2) new_compare14(x0, x1, True, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt21(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Double) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Float) new_fsEs(x0) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Ordering) new_esEs23(Just(x0), Nothing, x1) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt22(x0, x1, app(ty_[], x2)) new_compare29(Char(x0), Char(x1)) new_esEs18(True, True) new_ltEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare7(Just(x0), Just(x1), x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs22(Right(x0), Right(x1), x2, ty_Char) new_lt23(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Char) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs39(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(Integer(x0), Integer(x1)) new_compare28(GT, GT) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_ltEs24(x0, x1, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_esEs17([], [], x0) new_lt12(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_ltEs14(LT, LT) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Double) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare212(x0, x1, False, x2) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Bool) new_esEs5(x0, x1, ty_Float) new_compare25(x0, x1, ty_Bool) new_sr(x0, x1) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_compare25(x0, x1, ty_Float) new_lt8(x0, x1) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1) new_esEs16(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_compare7(Nothing, Nothing, x0) new_lt23(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, False, x4, x5) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1, x2) new_primPlusNat0(Zero, Succ(x0)) new_compare110(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Integer) new_esEs22(Left(x0), Right(x1), x2, x3) new_esEs22(Right(x0), Left(x1), x2, x3) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs24(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs22(Right(x0), Right(x1), x2, ty_@0) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_lt21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), ty_Double, x2) new_esEs22(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_ltEs11(x0, x1, x2) new_lt21(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), ty_Int, x2) new_esEs23(Just(x0), Just(x1), ty_Float) new_lt11(x0, x1, ty_Ordering) new_compare28(EQ, EQ) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs22(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs10(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True, x2) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Int) new_lt6(x0, x1, x2) new_esEs33(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_compare26(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Int) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_compare25(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_lt5(x0, x1, x2, x3) new_esEs7(x0, x1, ty_Char) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs14(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_compare24(x0, x1, True, x2, x3) new_esEs18(False, True) new_esEs18(True, False) new_compare30(Left(x0), Left(x1), x2, x3) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_compare19(False, False) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs32(x0, x1, app(ty_[], x2)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Zero) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Int) new_compare19(True, True) new_esEs16(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_esEs21(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_esEs16(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs35(x0, x1, ty_Integer) new_ltEs13(Just(x0), Nothing, x1) new_lt12(x0, x1, ty_Int) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare28(LT, GT) new_esEs4(x0, x1, ty_Double) new_compare28(GT, LT) new_compare25(x0, x1, ty_Ordering) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare213(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Float) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs6(False, False) new_esEs38(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs28(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_Float) new_lt10(x0, x1, x2) new_esEs31(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare30(Right(x0), Right(x1), x2, x3) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs35(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCompAux00(x0, EQ) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_lt12(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_compare212(x0, x1, True, x2) new_ltEs20(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Int) new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Right(x0), Right(x1), x2, ty_Integer) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_compare25(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1) new_lt12(x0, x1, ty_Bool) new_esEs17([], :(x0, x1), x2) new_asAs(False, x0) new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs33(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs5(Left(x0), Right(x1), x2, x3) new_lt22(x0, x1, ty_Float) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs37(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Nothing, Nothing, x0) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Zero, Zero) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_lt19(x0, x1, x2, x3) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_pePe(False, x0) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(EQ, EQ) new_esEs5(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Integer) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Char) new_lt16(x0, x1, x2, x3, x4) new_esEs6(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Integer, x2) new_lt17(x0, x1) new_compare9(@0, @0) new_lt12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Float) new_ltEs13(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, ty_Char) new_compare211(x0, x1, True, x2, x3) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Int) new_compare7(Nothing, Just(x0), x1) new_ltEs21(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare6(x0, x1) new_lt13(x0, x1) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Int) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Zero) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_esEs36(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, x0) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs22(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_esEs22(Left(x0), Left(x1), ty_Bool, x2) new_compare25(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_esEs23(Nothing, Just(x0), x1) new_ltEs13(Nothing, Nothing, x0) new_lt7(x0, x1) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs18(False, False) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Float) new_esEs23(Just(x0), Just(x1), ty_@0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(ty_[], x2)) new_compare28(EQ, GT) new_compare28(GT, EQ) new_ltEs19(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Float) new_compare25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Integer) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Ordering) new_esEs22(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs12(LT, LT) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Ordering) new_ltEs6(True, True) new_lt21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(x0, x1, ty_Ordering) new_ltEs9(x0, x1, x2) new_esEs35(x0, x1, ty_Double) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt12(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_Int) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(GT, GT) new_ltEs23(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare28(LT, LT) new_esEs25(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(x0, x1) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_esEs14(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Char) new_pePe(True, x0) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_@0) new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_compare14(x0, x1, False, x2, x3) new_esEs26(:%(x0, x1), :%(x2, x3), x4) new_esEs36(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Float) new_compare211(x0, x1, False, x2, x3) new_esEs14(x0, x1, ty_@0) new_esEs15(x0, x1, ty_Bool) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Char) new_esEs22(Right(x0), Right(x1), x2, ty_Double) new_compare110(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_lt12(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(x0, x1) new_ltEs22(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_compare25(x0, x1, app(ty_[], x2)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare213(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs11(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs24(Float(x0, x1), Float(x2, x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_not(False) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) new_esEs39(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(x0, x1, ty_Double) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs27(@0, @0) new_ltEs6(True, False) new_ltEs6(False, True) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_compare25(x0, x1, app(ty_Ratio, x2)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs15(x0, x1, ty_Float) new_compare24(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Integer) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs38(x0, x1, ty_@0) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs15(x0, x1, ty_Char) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_compare7(Just(x0), Nothing, x1) new_esEs4(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt11(x0, x1, ty_Float) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs39(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs11(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare19(True, False) new_compare19(False, True) new_esEs15(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) new_esEs17(:(x0, x1), [], x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (91) 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_compare25(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_compare25(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_compare25(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 ---------------------------------------- (92) YES ---------------------------------------- (93) 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_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_primPlusNat1(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_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_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) 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_primPlusNat1(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) 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_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(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_primPlusNat1(Zero, yvy400100) -> Succ(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_esEs12(LT, LT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT 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_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) 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_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_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero 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_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) 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_primCmpInt(Neg(Zero), Neg(Zero)) new_primMulNat0(Succ(x0), Succ(x1)) new_sIZE_RATIO 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_primPlusNat1(Zero, x0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(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_esEs12(GT, GT) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_primPlusNat0(Zero, Succ(x0)) new_lt27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_primPlusNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), Zero) new_esEs12(LT, LT) new_mkVBalBranch3Size_r1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_primPlusNat1(Succ(x0), 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) new_primPlusNat0(Zero, Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (94) QDPOrderProof (EQUIVALENT) We use the reduction pair processor [LPAR04,JAR06]. The following pairs can be oriented strictly and are deleted. 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) 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)) = x_1 + x_2 + x_3 + x_4 + x_5 POL(EQ) = 0 POL(False) = 1 POL(GT) = 0 POL(LT) = 0 POL(Neg(x_1)) = x_1 POL(Pos(x_1)) = 0 POL(Succ(x_1)) = 0 POL(True) = 0 POL(Zero) = 1 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_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)) = x_10 + x_14 + x_15 + 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)) = x_13 + x_14 + 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)) = x_10 + x_14 + x_15 + 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_13 + x_14 + 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)) = x_10 + x_14 + x_15 + 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)) = x_10 + x_13 + x_14 + 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)) = x_13 + x_14 + 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_10 + x_14 + x_15 + 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_13 + x_14 + 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)) = x_12 + x_13 + 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)) = x_10 + x_13 + x_14 + 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_12 + x_13 + 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)) = 0 POL(new_primCmpNat0(x_1, x_2)) = 0 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)) = x_2 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: none ---------------------------------------- (95) 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_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_primPlusNat1(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_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_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_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) 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_primPlusNat1(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) 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_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(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_primPlusNat1(Zero, yvy400100) -> Succ(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_esEs12(LT, LT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT 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_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) 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_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_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero 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_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) 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_primCmpInt(Neg(Zero), Neg(Zero)) new_primMulNat0(Succ(x0), Succ(x1)) new_sIZE_RATIO 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_primPlusNat1(Zero, x0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(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_esEs12(GT, GT) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_primPlusNat0(Zero, Succ(x0)) new_lt27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_primPlusNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), Zero) new_esEs12(LT, LT) new_mkVBalBranch3Size_r1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_primPlusNat1(Succ(x0), 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) new_primPlusNat0(Zero, Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (96) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 3 less nodes. ---------------------------------------- (97) Complex Obligation (AND) ---------------------------------------- (98) Obligation: Q DP problem: The TRS P consists of the following rules: 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_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) 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_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(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_primPlusNat1(Zero, yvy400100) -> Succ(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_esEs12(LT, LT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT 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_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) 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_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_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero 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_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) 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_primCmpInt(Neg(Zero), Neg(Zero)) new_primMulNat0(Succ(x0), Succ(x1)) new_sIZE_RATIO 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_primPlusNat1(Zero, x0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(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_esEs12(GT, GT) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_primPlusNat0(Zero, Succ(x0)) new_lt27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_primPlusNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), Zero) new_esEs12(LT, LT) new_mkVBalBranch3Size_r1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_primPlusNat1(Succ(x0), 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) new_primPlusNat0(Zero, Zero) 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_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) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 3 > 6, 3 > 7, 3 > 8, 3 > 9, 1 >= 10, 2 >= 11, 5 >= 13, 6 >= 14 *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) The graph contains the following edges 10 >= 1, 11 >= 2, 4 >= 4, 13 >= 5, 14 >= 6 ---------------------------------------- (100) YES ---------------------------------------- (101) Obligation: Q DP problem: The TRS P consists of the following rules: 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, 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_primPlusNat1(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_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_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_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_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_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_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_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_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_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_primPlusNat1(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_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_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_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, 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_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_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) 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_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(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_primPlusNat1(Zero, yvy400100) -> Succ(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_esEs12(LT, LT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT 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_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) 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_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_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero 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_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) 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_primCmpInt(Neg(Zero), Neg(Zero)) new_primMulNat0(Succ(x0), Succ(x1)) new_sIZE_RATIO 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_primPlusNat1(Zero, x0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(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_esEs12(GT, GT) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_primPlusNat0(Zero, Succ(x0)) new_lt27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_primPlusNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), Zero) new_esEs12(LT, LT) new_mkVBalBranch3Size_r1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_primPlusNat1(Succ(x0), 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) new_primPlusNat0(Zero, Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (102) QDPOrderProof (EQUIVALENT) We use the reduction pair processor [LPAR04,JAR06]. The following pairs can be oriented strictly and are deleted. 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_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_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_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_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, 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_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_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) 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_3 + x_4 + x_5 POL(EQ) = 1 POL(False) = 1 POL(GT) = 1 POL(LT) = 1 POL(Neg(x_1)) = 1 POL(Pos(x_1)) = 1 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_mkVBalBranch(x_1, x_2, x_3, x_4, x_5, x_6)) = x_3 + 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)) = x_10 + x_14 + x_15 + 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)) = x_13 + x_14 + 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_10 + x_14 + x_15 + x_6 + x_7 + 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_10 + x_13 + x_14 + x_15 + 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)) = x_10 + x_13 + x_14 + 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_12 + x_13 + x_14 + 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)) = 1 + x_10 + x_13 + x_14 + x_15 + x_6 + x_7 + 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_12 + x_13 + 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_10 + x_13 + x_14 + x_6 + x_7 + 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_primCmpInt(x_1, x_2)) = x_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)) = x_2 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(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) 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_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 ---------------------------------------- (103) Obligation: Q DP problem: The TRS P consists of the following rules: 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, 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_primPlusNat1(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_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_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_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_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_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_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_primPlusNat1(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_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_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) 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_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(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_primPlusNat1(Zero, yvy400100) -> Succ(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_esEs12(LT, LT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT 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_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) 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_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_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero 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_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) 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_primCmpInt(Neg(Zero), Neg(Zero)) new_primMulNat0(Succ(x0), Succ(x1)) new_sIZE_RATIO 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_primPlusNat1(Zero, x0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(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_esEs12(GT, GT) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_primPlusNat0(Zero, Succ(x0)) new_lt27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_primPlusNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), Zero) new_esEs12(LT, LT) new_mkVBalBranch3Size_r1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_primPlusNat1(Succ(x0), 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) new_primPlusNat0(Zero, Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (104) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 3 SCCs with 4 less nodes. ---------------------------------------- (105) Complex Obligation (AND) ---------------------------------------- (106) Obligation: Q DP problem: The TRS P consists of the following rules: 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_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_primPlusNat1(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) 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_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(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_primPlusNat1(Zero, yvy400100) -> Succ(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_esEs12(LT, LT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT 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_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) 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_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_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero 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_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) 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_primCmpInt(Neg(Zero), Neg(Zero)) new_primMulNat0(Succ(x0), Succ(x1)) new_sIZE_RATIO 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_primPlusNat1(Zero, x0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(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_esEs12(GT, GT) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_primPlusNat0(Zero, Succ(x0)) new_lt27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_primPlusNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), Zero) new_esEs12(LT, LT) new_mkVBalBranch3Size_r1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_primPlusNat1(Succ(x0), 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) new_primPlusNat0(Zero, Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (107) 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_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_primPlusNat1(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) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 3 > 6, 3 > 7, 3 > 8, 3 > 9, 3 > 10, 1 >= 11, 2 >= 12, 5 >= 14, 6 >= 15 *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) The graph contains the following edges 11 >= 1, 12 >= 2, 4 >= 4, 14 >= 5, 15 >= 6 ---------------------------------------- (108) YES ---------------------------------------- (109) Obligation: Q DP problem: The TRS P consists of the following rules: 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_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) 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_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(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_primPlusNat1(Zero, yvy400100) -> Succ(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_esEs12(LT, LT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT 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_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) 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_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_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero 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_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) 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_primCmpInt(Neg(Zero), Neg(Zero)) new_primMulNat0(Succ(x0), Succ(x1)) new_sIZE_RATIO 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_primPlusNat1(Zero, x0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(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_esEs12(GT, GT) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_primPlusNat0(Zero, Succ(x0)) new_lt27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_primPlusNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), Zero) new_esEs12(LT, LT) new_mkVBalBranch3Size_r1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_primPlusNat1(Succ(x0), 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) new_primPlusNat0(Zero, Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (110) 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_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) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 3 > 6, 3 > 7, 3 > 8, 3 > 9, 1 >= 10, 2 >= 11, 5 >= 13, 6 >= 14 *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) The graph contains the following edges 10 >= 1, 11 >= 2, 4 >= 4, 13 >= 5, 14 >= 6 ---------------------------------------- (111) YES ---------------------------------------- (112) 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, LT, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(Succ(yvy6200)), yvy63, yvy64), yvy53, 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_primPlusNat1(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) 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_primPlusNat0(Succ(yvy30700), Zero) -> Succ(yvy30700) new_primPlusNat0(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(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_primPlusNat1(Zero, yvy400100) -> Succ(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_esEs12(LT, LT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT 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_primPlusNat0(Succ(yvy30700), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat0(yvy30700, yvy4001000))) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat1(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) 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_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_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero 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_primPlusNat1(Succ(yvy3070), yvy400100) -> Succ(Succ(new_primPlusNat0(yvy3070, yvy400100))) 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_primCmpInt(Neg(Zero), Neg(Zero)) new_primMulNat0(Succ(x0), Succ(x1)) new_sIZE_RATIO 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_primPlusNat1(Zero, x0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(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_esEs12(GT, GT) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_primPlusNat0(Zero, Succ(x0)) new_lt27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_primPlusNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), Zero) new_esEs12(LT, LT) new_mkVBalBranch3Size_r1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_primPlusNat1(Succ(x0), 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) new_primPlusNat0(Zero, Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (113) 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_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_primPlusNat1(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) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 3 > 6, 3 > 7, 3 > 8, 3 > 9, 3 > 10, 1 >= 11, 2 >= 12, 5 >= 14, 6 >= 15 *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) The graph contains the following edges 11 >= 1, 12 >= 2, 4 >= 4, 14 >= 5, 15 >= 6 ---------------------------------------- (114) YES ---------------------------------------- (115) 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. ---------------------------------------- (116) 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 ---------------------------------------- (117) YES ---------------------------------------- (118) 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. ---------------------------------------- (119) 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 ---------------------------------------- (120) YES ---------------------------------------- (121) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(yvy30700), Succ(yvy4001000)) -> new_primPlusNat(yvy30700, yvy4001000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (122) 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(yvy30700), Succ(yvy4001000)) -> new_primPlusNat(yvy30700, yvy4001000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (123) YES